logging.handlers.QueueHandler

class logging.handlers.QueueHandler(queue) Returns a new instance of the QueueHandler class. The instance is initialized

2016-10-07 17:36:13
logging.handlers.QueueListener.handle()

handle(record) Handle a record. This just loops through the handlers offering them the record

2016-10-07 17:36:14
logging.handlers.NTEventLogHandler.getEventCategory()

getEventCategory(record) Returns the event category for the record. Override this if you want to specify your own categories

2016-10-07 17:36:12
logging.handlers.DatagramHandler.send()

send(s) Send a pickled string to a socket.

2016-10-07 17:36:09
logging.StreamHandler.emit()

emit(record) If a formatter is specified, it is used to format the record. The record is then written to the stream with a terminator

2016-10-07 17:36:27
logging.handlers.MemoryHandler

class logging.handlers.MemoryHandler(capacity, flushLevel=ERROR, target=None) Returns a new instance of the MemoryHandler

2016-10-07 17:36:10
logging.Logger.exception()

Logger.exception(msg, *args, **kwargs) Logs a message with level ERROR on this logger. The arguments are interpreted

2016-10-07 17:36:21
logging.config.dictConfig()

logging.config.dictConfig(config) Takes the logging configuration from a dictionary. The contents of this dictionary are described

2016-10-07 17:36:00
logging.handlers.QueueListener.prepare()

prepare(record) Prepare a record for handling. This implementation just returns the passed-in

2016-10-07 17:36:14
logging.Handler.setLevel()

Handler.setLevel(lvl) Sets the threshold for this handler to lvl. Logging messages which are less severe than lvl

2016-10-07 17:36:07