From ac693f0c029d82a56548cd2cb116b1a5687c8ea2 Mon Sep 17 00:00:00 2001 From: Dennis Date: Wed, 27 Oct 2021 23:22:27 -0700 Subject: [PATCH] Change default logging settings STDOUT now will get INFO-level logging by default. The file output will get no logging by default. --- srdl2sv/cli/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srdl2sv/cli/cli.py b/srdl2sv/cli/cli.py index 7c6ab67..e5b2f1b 100644 --- a/srdl2sv/cli/cli.py +++ b/srdl2sv/cli/cli.py @@ -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)")