fix log level settiung

This commit is contained in:
Andreas Wrede
2026-04-10 08:00:51 -04:00
parent d281ac5a70
commit 97dfc08f4d
2 changed files with 8 additions and 5 deletions
+2 -2
View File
@@ -648,9 +648,9 @@ def main(argv=None):
config = load_config(args.configfile)
# Setup logging
log_level = logging.INFO
log_level = logging.WARNING
if args.verbose:
log_level = logging.DEBUG
log_level = logging.INFO
if args.debug:
log_level = logging.DEBUG