formatTime(record, datefmt=None) This method should be called from
logging.getLogRecordFactory() Return a callable which is used to create a LogRecord.
handle(record) This method does nothing.
flush() You can override this to implement custom flushing behavior. This version just zaps the buffer to empty.
doRollover() Does a rollover, as described above.
filter(record) Is the specified record to be logged? Returns zero for no, nonzero for yes. If deemed appropriate, the record
emit(record) The record is formatted, and then sent to the syslog server. If exception information is present, it is not
Logger.removeHandler(hdlr) Removes the specified handler hdlr from this logger.
Logger.addHandler(hdlr) Adds the specified handler hdlr to this logger.
Logger.isEnabledFor(lvl) Indicates if a message of severity lvl would be processed by this logger. This method checks
Page 1 of 15