[3.12] Docs: document 'manager' and '_log' attrs of logging.Logging (GH-108145) (#108190)

Docs: document 'manager' and '_log' attrs of logging.Logging (GH-108145)
(cherry picked from commit f904aa4e1f)


Authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>

Co-authored-by: Erlend E. Aasland <erlend@python.org>
This commit is contained in:
Miss Islington (bot) 2023-08-21 04:16:53 -07:00 committed by GitHub
parent f2cc00527e
commit 9cd15cab77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1015,6 +1015,14 @@ information into logging calls. For a usage example, see the section on
'extra'. The return value is a (*msg*, *kwargs*) tuple which has the
(possibly modified) versions of the arguments passed in.
.. attribute:: manager
Delegates to the underlying :attr:`!manager`` on *logger*.
.. attribute:: _log
Delegates to the underlying :meth:`!_log`` method on *logger*.
In addition to the above, :class:`LoggerAdapter` supports the following
methods of :class:`Logger`: :meth:`~Logger.debug`, :meth:`~Logger.info`,
:meth:`~Logger.warning`, :meth:`~Logger.error`, :meth:`~Logger.exception`,