class logging.handlers.SysLogHandler(address=('localhost', SYSLOG_UDP_PORT), facility=LOG_USER, socktype=socket.SOCK_DGRAM) Returns
emit(record) Outputs the record to the file, catering for rollover as described previously.
close() Calls flush(), sets the target to None and clears the buffer.
getEventType(record) Returns the event type for the record. Override this if you want to specify your own types. This version
emit(record) Determines the message ID, event category and event type, and then logs the message in the NT event log.
Handler.format(record) Do formatting for a record - if a formatter is set, use it. Otherwise, use the default formatter for
Logger.hasHandlers() Checks to see if this logger has any handlers configured. This is done by looking for handlers in this
emit() Pickles the record’s attribute dictionary and writes it to the socket in binary format. If there is an error with the
Logger.propagate If this evaluates to true, events logged to this logger will be passed to the handlers of higher level (ancestor)
logging.config.stopListening() Stops the listening server which was created with a call to listen(). This is typically
Page 6 of 15