]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] gh-91070: Add note about SysLogHandler on macOS 12.x (Monterey). (GH-94803...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 25 Aug 2022 07:38:02 +0000 (00:38 -0700)
committerGitHub <noreply@github.com>
Thu, 25 Aug 2022 07:38:02 +0000 (08:38 +0100)
Doc/library/logging.handlers.rst

index 026f14153cbe1977e3a74f110feb93db0301ea22..1e61a519bc06f3f57c729a9f666912cefb873e7d 100644 (file)
@@ -629,6 +629,12 @@ supports sending logging messages to a remote or local Unix syslog.
    application needs to run on several platforms). On Windows, you pretty
    much have to use the UDP option.
 
+   .. note:: On macOS 12.x (Monterey), Apple has changed the behaviour of their
+      syslog daemon - it no longer listens on a domain socket. Therefore, you cannot
+      expect :class:`SysLogHandler` to work on this system.
+
+      See :gh:`91070` for more information.
+
    .. versionchanged:: 3.2
       *socktype* was added.