logging.handlers.NTEventLogHandler.getMessageID()

getMessageID(record) Returns the message ID for the record. If you are using your own messages, you could do this by having

2016-10-07 17:36:12
logging.config.stopListening()

logging.config.stopListening() Stops the listening server which was created with a call to listen(). This is typically

2016-10-07 17:36:01
logging.handlers.WatchedFileHandler.emit()

emit(record) Outputs the record to the file, but first checks to see if the file has changed. If it has, the existing stream

2016-10-07 17:36:19
logging.handlers.BufferingHandler.emit()

emit(record) Appends the record to the buffer. If shouldFlush() returns true, calls flush() to process

2016-10-07 17:36:08
logging.handlers.NTEventLogHandler

class logging.handlers.NTEventLogHandler(appname, dllname=None, logtype='Application') Returns a new instance of the

2016-10-07 17:36:11
logging.handlers.NTEventLogHandler.emit()

emit(record) Determines the message ID, event category and event type, and then logs the message in the NT event log.

2016-10-07 17:36:12
logging.setLogRecordFactory()

logging.setLogRecordFactory(factory) Set a callable which is used to create a LogRecord.

2016-10-07 17:36:26
logging.handlers.SysLogHandler.mapPriority()

mapPriority(levelname) Maps a logging level name to a syslog priority name. You may need to override this if you are using custom

2016-10-07 17:36:18
logging.handlers.MemoryHandler.close()

close() Calls flush(), sets the target to None and clears the buffer.

2016-10-07 17:36:11
logging.handlers.SysLogHandler.close()

close() Closes the socket to the remote host.

2016-10-07 17:36:17