logging.shutdown()

logging.shutdown() Informs the logging system to perform an orderly shutdown by flushing and closing all handlers. This should

2016-10-07 17:36:26
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.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.handlers.MemoryHandler.close()

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

2016-10-07 17:36:11
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.SocketHandler.makePickle()

makePickle(record) Pickles the record’s attribute dictionary in binary format with a length prefix, and returns it ready for

2016-10-07 17:36:16
logging.Handler.addFilter()

Handler.addFilter(filt) Adds the specified filter filt to this handler.

2016-10-07 17:36:05
logging.handlers.BaseRotatingHandler

class logging.handlers.BaseRotatingHandler(filename, mode, encoding=None, delay=False) The parameters are as for FileHandler

2016-10-07 17:36:07
logging.handlers.DatagramHandler

class logging.handlers.DatagramHandler(host, port) Returns a new instance of the DatagramHandler class intended

2016-10-07 17:36:09
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