Log the original commandline at DEBUG level.
authorScott Gasch <[email protected]>
Wed, 23 Feb 2022 04:02:24 +0000 (20:02 -0800)
committerScott Gasch <[email protected]>
Wed, 23 Feb 2022 04:02:24 +0000 (20:02 -0800)
config.py

index 46caad15c9db04e44a37e4acd5ccad74161b0643..57593c3a33c01505bd87918be3591459b508743f 100644 (file)
--- a/config.py
+++ b/config.py
@@ -329,5 +329,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(_)