From d1f18fdf430eee4292938dd18b922d6d6e05e18c Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Tue, 22 Feb 2022 20:02:24 -0800 Subject: [PATCH] Log the original commandline at DEBUG level. --- config.py | 1 + 1 file changed, 1 insertion(+) 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(_) -- 2.46.0