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.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.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.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.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.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
logging.handlers.RotatingFileHandler.emit()

emit(record) Outputs the record to the file, catering for rollover as described previously.

2016-10-07 17:36:15
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.Handler.

Handler.__init__(level=NOTSET) Initializes the Handler instance by setting its level, setting the list of filters

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