From c21523bedf493322de5fa52a31841102aa37643b Mon Sep 17 00:00:00 2001 From: bobokun Date: Sat, 5 Oct 2024 15:18:03 -0400 Subject: [PATCH] additional debug logs for #656 --- VERSION | 2 +- modules/config.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 6487c0b..e81ee50 100755 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.11-develop7 +4.1.11-develop8 diff --git a/modules/config.py b/modules/config.py index e5deeaa..0859454 100755 --- a/modules/config.py +++ b/modules/config.py @@ -84,6 +84,8 @@ class Config: logger.debug(f" --config-file (QBT_CONFIG): {args['config_files']}") logger.debug(f" --log-file (QBT_LOGFILE): {args['log_file']}") logger.debug(f" --log-level (QBT_LOG_LEVEL): {args['log_level']}") + logger.debug(f" --log-size (QBT_LOG_SIZE): {args['log_size']}") + logger.debug(f" --log-count (QBT_LOG_COUNT): {args['log_count']}") logger.debug(f" --divider (QBT_DIVIDER): {args['divider']}") logger.debug(f" --width (QBT_WIDTH): {args['screen_width']}") logger.debug(f" --debug (QBT_DEBUG): {args['debug']}")