logging.handlers.BaseRotatingHandler.rotator

rotator If this attribute is set to a callable, the rotate() method delegates to this callable. The parameters

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

class logging.handlers.SMTPHandler(mailhost, fromaddr, toaddrs, subject, credentials=None, secure=None, timeout=1.0) Returns

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

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

2016-10-07 17:36:23
logging.handlers.QueueListener.enqueue_sentinel()

enqueue_sentinel() Writes a sentinel to the queue to tell the listener to quit. This implementation uses put_nowait()

2016-10-07 17:36:14
logging.handlers.QueueHandler.enqueue()

enqueue(record) Enqueues the record on the queue using put_nowait(); you may want to override this if you want

2016-10-07 17:36:13
logging.Handler.emit()

Handler.emit(record) Do whatever it takes to actually log the specified logging record. This version is intended to be implemented

2016-10-07 17:36:05
logging.StreamHandler

class logging.StreamHandler(stream=None) Returns a new instance of the StreamHandler class. If stream

2016-10-07 17:36:26
logging.log()

logging.log(level, msg, *args, **kwargs) Logs a message with level level on the root logger. The other arguments are

2016-10-07 17:36:19
logging.debug()

logging.debug(msg, *args, **kwargs) Logs a message with level DEBUG on the root logger. The msg is the

2016-10-07 17:36:01
logging.LoggerAdapter

class logging.LoggerAdapter(logger, extra) Returns an instance of LoggerAdapter initialized with an underlying

2016-10-07 17:36:24