]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.10] 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:37:42 +0000 (00:37 -0700)
committerGitHub <noreply@github.com>
Thu, 25 Aug 2022 07:37:42 +0000 (08:37 +0100)
Doc/library/logging.handlers.rst

index 0dc05255db9cb8982c4a65cdac3b6fae7c10d4e4..f125dfe64a03e89c50182bc89b0acd68ec8401b9 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.