set logging level to ERROR by default

This commit is contained in:
adobdin 2016-05-05 13:43:39 +00:00
parent 2a121e8f31
commit a35f44da85

View File

@ -62,7 +62,7 @@ def main(argv=None):
help="be verbose",
action="store_true")
args = parser.parse_args(argv[1:])
loglevel = logging.WARNING
loglevel = logging.ERROR
if args.verbose:
if args.debug:
loglevel = logging.DEBUG