diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-09-27 17:18:28 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-09-27 17:18:28 (GMT) |
commit | 5421f35d5e215a69382f0c195c0c39c8b541eca7 (patch) | |
tree | 113a860e9f3758506e285490e0061ea472684469 /Doc/howto/logging.rst | |
parent | 55798896a4bd3f294755523d8237a56cacc4bf5c (diff) | |
download | cpython-5421f35d5e215a69382f0c195c0c39c8b541eca7.zip cpython-5421f35d5e215a69382f0c195c0c39c8b541eca7.tar.gz cpython-5421f35d5e215a69382f0c195c0c39c8b541eca7.tar.bz2 |
logging: added support for Unix domain sockets to SocketHandler and DatagramHandler.
Diffstat (limited to 'Doc/howto/logging.rst')
-rw-r--r-- | Doc/howto/logging.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index 165486a..c7a802a 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -900,10 +900,10 @@ provided: disk files, rotating the log file at certain timed intervals. #. :class:`~handlers.SocketHandler` instances send messages to TCP/IP - sockets. + sockets. Since 3.4, Unix domain sockets are also supported. #. :class:`~handlers.DatagramHandler` instances send messages to UDP - sockets. + sockets. Since 3.4, Unix domain sockets are also supported. #. :class:`~handlers.SMTPHandler` instances send messages to a designated email address. |