From 1a2e920d891328bf843574791a7f094fd4176203 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Tue, 12 Feb 2019 18:32:35 +0100 Subject: [PATCH] remove debug --- dotdrop/options.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dotdrop/options.py b/dotdrop/options.py index 995a6ca..58384d0 100644 --- a/dotdrop/options.py +++ b/dotdrop/options.py @@ -93,7 +93,8 @@ class Options(AttrMonitor): self.log = Logger() self.debug = self.args['--verbose'] self.confpath = os.path.expanduser(self.args['--cfg']) - self.log.dbg('config file: {}'.format(self.confpath)) + if self.debug: + self.log.dbg('config file: {}'.format(self.confpath)) self._read_config() self._apply_args()