From 2c43e31aae1138f79c30619cde25746e41390152 Mon Sep 17 00:00:00 2001 From: Scott Date: Mon, 17 Jan 2022 15:51:44 -0800 Subject: [PATCH] Make logging_utils remove preexisting logging turds, fix a small bug. --- logging_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/logging_utils.py b/logging_utils.py index f7fac03..ddea102 100644 --- a/logging_utils.py +++ b/logging_utils.py @@ -146,7 +146,7 @@ cfg.add_argument( cfg.add_argument( '--logging_clear_preexisting_handlers', action=argparse_utils.ActionNoYes, - default=False, + default=True, help=( 'Should logging code clear preexisting global logging handlers and thus insist that is ' + 'alone can add handlers. Use this to work around annoying modules that insert global ' + @@ -523,7 +523,7 @@ def initialize_logging(logger=None) -> logging.Logger: f'Initialized global logging; default logging level is {level_name}.' ) if config.config['logging_clear_preexisting_handlers'] and preexisting_handlers_count > 0: - msg = 'Logging cleared {preexisting_handlers_count} global handlers (--logging_clear_preexisting_handlers)' + msg = f'Logging cleared {preexisting_handlers_count} global handlers (--logging_clear_preexisting_handlers)' logger.warning(msg) logger.debug(f'Logging format specification is "{fmt}"') if config.config['logging_debug_threads']: -- 2.45.2