getMessage() Returns the message for this LogRecord instance after merging any user-supplied arguments with the
Handler.__init__(level=NOTSET) Initializes the Handler instance by setting its level, setting the list of filters
doRollover() Does a rollover, as described above.
shouldFlush(record) Returns true if the buffer is up to capacity. This method can be overridden to implement custom flushing
Handler.createLock() Initializes a thread lock which can be used to serialize access to underlying I/O functionality which may
emit(record) Outputs the record to the file, catering for rollover as described previously.
logging.captureWarnings(capture) This function is used to turn the capture of warnings by logging on and off.
Logger.handle(record) Handles a record by passing it to all handlers associated with this logger and its ancestors (until a
handleError() Handles an error which has occurred during emit(). The most likely cause is a lost connection. Closes
createLock() This method returns None for the lock, since there is no underlying I/O to which access needs to be
Page 4 of 15