forked from M-Labs/artiq
1
0
Fork 0

tools: fix logging config

This commit is contained in:
Sebastien Bourdeauducq 2015-01-29 18:47:07 +08:00
parent 5ba7218cc1
commit 939236a1b5
1 changed files with 1 additions and 1 deletions

View File

@ -37,4 +37,4 @@ def verbosity_args(parser):
def init_logger(args):
logging.basicConfig(logging.INFO + args.quiet*10 - args.verbose*10)
logging.basicConfig(level=logging.INFO + args.quiet*10 - args.verbose*10)