summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-02-22 20:02:24 -0800
committerScott Gasch <[email protected]>2022-02-22 20:02:24 -0800
commitd1f18fdf430eee4292938dd18b922d6d6e05e18c (patch)
tree4abca82bdd4a6c89747a64f9300cf206eaf23510
parentb653a847e35aa0e43f764ab95cf80ab9f4aefcde (diff)
Log the original commandline at DEBUG level.
-rw-r--r--config.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.py b/config.py
index 46caad1..57593c3 100644
--- 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(_)