Skip to content

Commit 939236a

Browse files
committedJan 29, 2015
tools: fix logging config
1 parent 5ba7218 commit 939236a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎artiq/tools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ def verbosity_args(parser):
3737

3838

3939
def init_logger(args):
40-
logging.basicConfig(logging.INFO + args.quiet*10 - args.verbose*10)
40+
logging.basicConfig(level=logging.INFO + args.quiet*10 - args.verbose*10)

0 commit comments

Comments
 (0)
Please sign in to comment.