diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2014-04-15 22:13:12 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2014-04-15 22:13:12 (GMT) |
commit | 65425b4bc6499bcbdf99ff1b82a02d8112359542 (patch) | |
tree | 6cb4afc066e87c208f0640fee039dfe1581100e3 /Doc/library/logging.rst | |
parent | ebc1a30d55f07d590d62504c3f097cb8a15ee7d3 (diff) | |
download | cpython-65425b4bc6499bcbdf99ff1b82a02d8112359542.zip cpython-65425b4bc6499bcbdf99ff1b82a02d8112359542.tar.gz cpython-65425b4bc6499bcbdf99ff1b82a02d8112359542.tar.bz2 |
Issue #21245: updated documentation on exception() method and function.
Diffstat (limited to 'Doc/library/logging.rst')
-rw-r--r-- | Doc/library/logging.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 8d093e1..c0a479e 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -250,7 +250,7 @@ is the module's name in the Python package namespace. interpreted as for :meth:`debug`. -.. method:: Logger.exception(msg, *args) +.. method:: Logger.exception(msg, *args, **kwargs) Logs a message with level :const:`ERROR` on this logger. The arguments are interpreted as for :meth:`debug`. Exception info is added to the logging @@ -992,7 +992,7 @@ functions. are interpreted as for :func:`debug`. -.. function:: exception(msg, *args) +.. function:: exception(msg, *args, **kwargs) Logs a message with level :const:`ERROR` on the root logger. The arguments are interpreted as for :func:`debug`. Exception info is added to the logging |