From: Thierry Parmentelat Date: Wed, 2 Nov 2011 11:10:45 +0000 (+0100) Subject: -vvv should do the same as -vv X-Git-Tag: sfa-1.1-2~1^2~9 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=b20919759a6b63a6312d0fad726dd18f7e7f5ae8;p=sfa.git -vvv should do the same as -vv --- diff --git a/sfa/util/sfalogging.py b/sfa/util/sfalogging.py index 75229b38..e1dfcaa9 100644 --- a/sfa/util/sfalogging.py +++ b/sfa/util/sfalogging.py @@ -68,7 +68,7 @@ class _SfaLogger: self.logger.setLevel(logging.WARNING) elif verbose==1: self.logger.setLevel(logging.INFO) - elif verbose==2: + elif verbose>=2: self.logger.setLevel(logging.DEBUG) ####################