From: Artem Bityutskiy Date: Tue, 24 Sep 2013 07:25:49 +0000 (+0300) Subject: bmaptool: print warning messages even with --quiet X-Git-Tag: v3.0~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b53484690e0c369b46148264d886fe5c9a39264e;p=tools%2Fbmap-tools.git bmaptool: print warning messages even with --quiet When the --quiet option is used, we print only error messages, and warnings are suppressed. However, it is a good idea to print warnings even with --quiet, since they usually tell about problems users should better know about. Change-Id: Id0f708723cc13d57191fd540e684ca0cf20a45f7 Signed-off-by: Artem Bityutskiy --- diff --git a/bmaptool b/bmaptool index e2b7f1b..8c92d3c 100755 --- a/bmaptool +++ b/bmaptool @@ -658,7 +658,7 @@ def main(): args = parse_arguments() if args.quiet: - loglevel = logging.ERROR + loglevel = logging.WARNING else: loglevel = logging.INFO