diff options
author | Harry <harry.lees@gmail.com> | 2021-03-29 14:16:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-29 14:16:19 (GMT) |
commit | 7bfd65eba73d013eee8789f2009c09c61c31b800 (patch) | |
tree | 63e6dd7eef22ac8392844c817c26708ea9815453 /Doc/howto/logging.rst | |
parent | c1b073a630bb731de18bb17afb2b8b1388b92a72 (diff) | |
download | cpython-7bfd65eba73d013eee8789f2009c09c61c31b800.zip cpython-7bfd65eba73d013eee8789f2009c09c61c31b800.tar.gz cpython-7bfd65eba73d013eee8789f2009c09c61c31b800.tar.bz2 |
bpo-43648: Remove redundant datefmt option in logging file config (GH-25051)
[bpo-43648](): Remove redundant datefmt option in logging file config
Automerge-Triggered-By: GH:vsajip
Diffstat (limited to 'Doc/howto/logging.rst')
-rw-r--r-- | Doc/howto/logging.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index b4dd920..fcc6bec 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -684,7 +684,6 @@ Here is the logging.conf file: [formatter_simpleFormatter] format=%(asctime)s - %(name)s - %(levelname)s - %(message)s - datefmt= The output is nearly identical to that of the non-config-file-based example: |