mirror of
https://github.com/Silicon1602/srdl2sv.git
synced 2024-12-22 06:58:41 +00:00
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:
parent
b8e9adb1f0
commit
ac693f0c02
@ -66,14 +66,14 @@ class CliArguments():
|
|||||||
self.parser.add_argument(
|
self.parser.add_argument(
|
||||||
"--file_log_level",
|
"--file_log_level",
|
||||||
choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL', 'NONE'],
|
choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL', 'NONE'],
|
||||||
default='INFO',
|
default='NONE',
|
||||||
help="Set verbosity level of output to log-file. When set to 'NONE',\
|
help="Set verbosity level of output to log-file. When set to 'NONE',\
|
||||||
nothing will be printed to the shell. (default: %(default)s)")
|
nothing will be printed to the shell. (default: %(default)s)")
|
||||||
|
|
||||||
self.parser.add_argument(
|
self.parser.add_argument(
|
||||||
"--stream_log_level",
|
"--stream_log_level",
|
||||||
choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL', 'NONE'],
|
choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL', 'NONE'],
|
||||||
default='WARNING',
|
default='INFO',
|
||||||
help="Set verbosity level of output to shell. When set to 'NONE',\
|
help="Set verbosity level of output to shell. When set to 'NONE',\
|
||||||
nothing will be printed to the shell. (default: %(default)s)")
|
nothing will be printed to the shell. (default: %(default)s)")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user