projects
/
python_utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b653a84
)
Log the original commandline at DEBUG level.
author
Scott Gasch
<
[email protected]
>
Wed, 23 Feb 2022 04:02:24 +0000
(20:02 -0800)
committer
Scott Gasch
<
[email protected]
>
Wed, 23 Feb 2022 04:02:24 +0000
(20:02 -0800)
config.py
patch
|
blob
|
history
diff --git
a/config.py
b/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(_)