diff options
| author | Scott Gasch <[email protected]> | 2022-02-22 20:02:24 -0800 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-02-22 20:02:24 -0800 |
| commit | d1f18fdf430eee4292938dd18b922d6d6e05e18c (patch) | |
| tree | 4abca82bdd4a6c89747a64f9300cf206eaf23510 | |
| parent | b653a847e35aa0e43f764ab95cf80ab9f4aefcde (diff) | |
Log the original commandline at DEBUG level.
| -rw-r--r-- | config.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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(_) |
