summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2022-08-25 07:27:30 (GMT)
committerGitHub <noreply@github.com>2022-08-25 07:27:30 (GMT)
commit8db7693bbff55f5ed4bfc194c77c561e71471bf3 (patch)
tree14a2bb78c49b0346a3e86e0f3daa5acd2f00899b
parentdf110126971d0271a977ce10779083b3e335b4da (diff)
downloadcpython-8db7693bbff55f5ed4bfc194c77c561e71471bf3.zip
cpython-8db7693bbff55f5ed4bfc194c77c561e71471bf3.tar.gz
cpython-8db7693bbff55f5ed4bfc194c77c561e71471bf3.tar.bz2
gh-91070: Add note about SysLogHandler on macOS 12.x (Monterey). (GH-94803)
-rw-r--r--Doc/library/logging.handlers.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst
index 0dc0525..f125dfe 100644
--- a/Doc/library/logging.handlers.rst
+++ b/Doc/library/logging.handlers.rst
@@ -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.