[Python-checkins] r55582 - python/branches/release25-maint/Lib/logging/handlers.py

vinay.sajip python-checkins at python.org
Fri May 25 09:27:32 CEST 2007


Author: vinay.sajip
Date: Fri May 25 09:27:30 2007
New Revision: 55582

Modified:
   python/branches/release25-maint/Lib/logging/handlers.py
Log:
Updated docstring for SysLogHandler (#1720726).

Modified: python/branches/release25-maint/Lib/logging/handlers.py
==============================================================================
--- python/branches/release25-maint/Lib/logging/handlers.py	(original)
+++ python/branches/release25-maint/Lib/logging/handlers.py	Fri May 25 09:27:30 2007
@@ -578,7 +578,8 @@
         """
         Initialize a handler.
 
-        If address is specified as a string, UNIX socket is used.
+        If address is specified as a string, a UNIX socket is used. To log to a
+        local syslogd, "SysLogHandler(address="/dev/log")" can be used.
         If facility is not specified, LOG_USER is used.
         """
         logging.Handler.__init__(self)


More information about the Python-checkins mailing list