From d70cd8187547204bc898b89b170fbda5585e9928 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Thu, 28 May 2020 18:41:26 +0300 Subject: [PATCH] v.pref: remove 'setting pref.path to ...' when given -v --- vlib/v/pref/pref.v | 3 --- 1 file changed, 3 deletions(-) diff --git a/vlib/v/pref/pref.v b/vlib/v/pref/pref.v index 973c9139e5..2c6ae22718 100644 --- a/vlib/v/pref/pref.v +++ b/vlib/v/pref/pref.v @@ -301,9 +301,6 @@ pub fn parse_args(args []string) (&Preferences, string) { res.build_mode = .build_module res.path = args[command_pos + 1] } - if res.is_verbose { - println('setting pref.path to "$res.path"') - } res.fill_with_defaults() return res, command }