X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=config.py;h=bea701837c520ca86d584f9b48cead98ab06e838;hb=47ece7bceb442d70ddcc3c728533c4d4d2bccde4;hp=46caad15c9db04e44a37e4acd5ccad74161b0643;hpb=2bf59f4f017a7497aaf0449bdf77e130abdf36d8;p=python_utils.git diff --git a/config.py b/config.py index 46caad1..bea7018 100644 --- a/config.py +++ b/config.py @@ -1,5 +1,7 @@ #!/usr/bin/env python3 +# © Copyright 2021-2022, Scott Gasch + """Global configuration driven by commandline arguments, environment variables and saved configuration files. This works across several modules. @@ -329,5 +331,6 @@ def dump_config(): def late_logging(): """Log messages saved earlier now that logging has been initialized.""" logger = logging.getLogger(__name__) + logger.debug('Original commandline was: %s', ORIG_ARGV) for _ in SAVED_MESSAGES: logger.debug(_)