Python Library Reference
Previous: Up: 14.5.5 Handler Objects Next:

14.5.5.7 SysLogHandler

The SysLogHandler class, located in the logging.handlers module, supports sending logging messages to a remote or local Unix syslog.

class SysLogHandler( [address[, facility]])
Returns a new instance of the SysLogHandler class intended to communicate with a remote Unix machine whose address is given by address in the form of a (host, port) tuple. If address is not specified, ('localhost', 514) is used. The address is used to open a UDP socket. If facility is not specified, LOG_USER is used.

close( )
Closes the socket to the remote host.

emit( record)
The record is formatted, and then sent to the syslog server. If exception information is present, it is not sent to the server.

encodePriority( facility, priority)
Encodes the facility and priority into an integer. You can pass in strings or integers - if strings are passed, internal mapping dictionaries are used to convert them to integers.


Python Library Reference
Previous: Up: 14.5.5 Handler Objects Next:

Release 2.5, documentation updated on 19th September, 2006.
See About this document... for information on suggesting changes.

AltStyle によって変換されたページ (->オリジナル) /