Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions Doc/library/logging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,15 @@ is the module's name in the Python package namespace.

.. versionadded:: 3.2

.. method:: Logger._log(level, msg, args, exc_info=None, extra=None, stack_info=False, stacklevel=1)

Low-level logging routine which creates a :class:`~LogRecord` and then calls
all the handlers of this logger to handle the record.

.. attribute:: manager

The logger ``logging.Manager``.

.. versionchanged:: 3.7
Loggers can now be pickled and unpickled.

Expand Down Expand Up @@ -1021,11 +1030,11 @@ information into logging calls. For a usage example, see the section on

.. attribute:: manager

Delegates to the underlying :attr:`!manager`` on *logger*.
Delegates to the underlying :attr:`!manager` on *logger*.

.. attribute:: _log

Delegates to the underlying :meth:`!_log`` method on *logger*.
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`,
Expand Down