2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-25 03:08:27 +08:00

tools: fix logging config

This commit is contained in:
Sebastien Bourdeauducq 2015-01-29 18:47:07 +08:00
parent 5ba7218cc1
commit 939236a1b5

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)