From ce2033694ef4bf4c304e5c98d19fdeb684cd961b Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 25 Jul 2021 12:30:11 -0700 Subject: [PATCH] [3.9] bpo-43184: Add information about added attribute and method. (GH-27347) (GH-27353) (cherry picked from commit 50b72768ffe6413424dc4eba916dd1ff89a2fe7b) --- Doc/library/logging.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index a7f815e9983..6233a2a6746 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -893,6 +893,10 @@ interchangeably. :meth:`~Logger.setLevel` and :meth:`~Logger.hasHandlers` methods were added to :class:`LoggerAdapter`. These methods delegate to the underlying logger. +.. versionchanged:: 3.6 + Attribute :attr:`manager` and method :meth:`_log` were added, which + delegate to the underlying logger and allow adapters to be nested. + Thread Safety -------------