This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhunger
Recipients
Date 2007-05-17.13:20:44
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The documentation for "logging.handlers.SysLogHandler" is somewhat incomplete. This class can be used to communicate to a local syslogd too (not only to log to a remote syslogd, or a local syslogd with enabled remote logging capabilities ("-r" option)).

The documentation on:

http://docs.python.org/lib/node417.html

for SysLogHandler([address[, facility]]) should be expanded with something like the following:

"""
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.
"""

The docstring "import logging.handlers;help(logging.handlers.SysLogHandler.__init__)" is rather short and could be replaced with above documentation.


History
Date User Action Args
2007-08-23 14:53:46adminlinkissue1720726 messages
2007-08-23 14:53:46admincreate