Logger.warning(msg, *args, **kwargs) Logs a message with level WARNING on this logger. The arguments are interpreted
emit(record) The record is formatted, and then sent to the syslog server. If exception information is present, it is not
dequeue(block) Dequeues a record and return it, optionally blocking. The base implementation
doRollover() Does a rollover, as described above.
Logger.filter(record) Applies this logger’s filters to the record and returns a true value if the record is to be processed
close() Closes the file.
Logger.isEnabledFor(lvl) Indicates if a message of severity lvl would be processed by this logger. This method checks
logging.getLogRecordFactory() Return a callable which is used to create a LogRecord.
Logger.addFilter(filt) Adds the specified filter filt to this logger.
Logger.addHandler(hdlr) Adds the specified handler hdlr to this logger.
Page 1 of 15