From: Irit Katriel Date: Sun, 4 Oct 2020 13:16:04 +0000 (+0100) Subject: bpo-41898: add caveat on root logger seeing all messages in assertLogs doc (GH-22526) X-Git-Tag: v3.10.0a1~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ed54435268b285964141fb74d47ceaa33ea79ab;p=thirdparty%2FPython%2Fcpython.git bpo-41898: add caveat on root logger seeing all messages in assertLogs doc (GH-22526) --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index a52df9ee0157..f04ec91270ee 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -1091,7 +1091,8 @@ Test cases If given, *logger* should be a :class:`logging.Logger` object or a :class:`str` giving the name of a logger. The default is the root - logger, which will catch all messages. + logger, which will catch all messages that were not blocked by a + non-propagating descendent logger. If given, *level* should be either a numeric logging level or its string equivalent (for example either ``"ERROR"`` or