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
logging.handlers.BaseRotatingHandler.namer

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

2016-10-07 17:36:08
logging.Handler.createLock()

Handler.createLock() Initializes a thread lock which can be used to serialize access to underlying I/O functionality which may

2016-10-07 17:36:05
logging.captureWarnings()

logging.captureWarnings(capture) This function is used to turn the capture of warnings by logging on and off.

2016-10-07 17:36:00
logging.handlers.RotatingFileHandler.doRollover()

doRollover() Does a rollover, as described above.

2016-10-07 17:36:15
logging.handlers.NTEventLogHandler.close()

close() At this point, you can remove the application name from the registry as a source of event log entries. However, if you

2016-10-07 17:36:12
logging.handlers.BufferingHandler.shouldFlush()

shouldFlush(record) Returns true if the buffer is up to capacity. This method can be overridden to implement custom flushing

2016-10-07 17:36:09
logging.LogRecord.getMessage()

getMessage() Returns the message for this LogRecord instance after merging any user-supplied arguments with the

2016-10-07 17:36:25
logging.disable()

logging.disable(lvl) Provides an overriding level lvl for all loggers which takes precedence over the logger’s own

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

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

2016-10-07 17:36:02