diff options
author | Erik Montnemery <erik@montnemery.com> | 2022-07-05 14:23:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 14:23:12 (GMT) |
commit | c60f125533b8808317c1370450f0535430d59d8c (patch) | |
tree | f7ae0ef6c786f91dcbd9b15498d1d6d5c32b784f /Doc/library/logging.handlers.rst | |
parent | 324d01944d16868b07df9e8eef6987766a31a36d (diff) | |
download | cpython-c60f125533b8808317c1370450f0535430d59d8c.zip cpython-c60f125533b8808317c1370450f0535430d59d8c.tar.gz cpython-c60f125533b8808317c1370450f0535430d59d8c.tar.bz2 |
bpo-46755: Don't log stack info twice in QueueHandler (GH-31355)
Diffstat (limited to 'Doc/library/logging.handlers.rst')
-rw-r--r-- | Doc/library/logging.handlers.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst index 4bdd550..1447cab 100644 --- a/Doc/library/logging.handlers.rst +++ b/Doc/library/logging.handlers.rst @@ -1034,7 +1034,7 @@ possible, while any potentially slow operations (such as sending an email via method is enqueued. The base implementation formats the record to merge the message, - arguments, and exception information, if present. It also removes + arguments, exception and stack information, if present. It also removes unpickleable items from the record in-place. Specifically, it overwrites the record's :attr:`msg` and :attr:`message` attributes with the merged message (obtained by calling the handler's :meth:`format` method), and |