Change default logging settings

STDOUT now will get INFO-level logging by default. The file output will
get no logging by default.
This commit is contained in:
Dennis Potter 2021-10-27 23:22:27 -07:00
parent b8e9adb1f0
commit ac693f0c02
Signed by: Dennis
GPG Key ID: 186A8AD440942BAF
1 changed files with 2 additions and 2 deletions

View File

@ -66,14 +66,14 @@ class CliArguments():
self.parser.add_argument(
"--file_log_level",
choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL', 'NONE'],
default='INFO',
default='NONE',
help="Set verbosity level of output to log-file. When set to 'NONE',\
nothing will be printed to the shell. (default: %(default)s)")
self.parser.add_argument(
"--stream_log_level",
choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL', 'NONE'],
default='WARNING',
default='INFO',
help="Set verbosity level of output to shell. When set to 'NONE',\
nothing will be printed to the shell. (default: %(default)s)")