Raise default log level to INFO.

This commit is contained in:
Florian Lindner 2018-07-18 23:12:07 +02:00
parent 8612fa4975
commit 53bd9b1300
1 changed files with 1 additions and 1 deletions

View File

@ -12,4 +12,4 @@ def verbosity_to_log_level(verbosity):
return {
VERBOSITY_SOME: logging.INFO,
VERBOSITY_LOTS: logging.DEBUG,
}.get(verbosity, logging.WARNING)
}.get(verbosity, logging.INFO)