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
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.addHandler(hdlr) Adds the specified handler hdlr to this logger.
Logger.removeHandler(hdlr) Removes the specified handler hdlr from this logger.
Handler.removeFilter(filt) Removes the specified filter filt from this handler.
Logger.warning(msg, *args, **kwargs) Logs a message with level WARNING on this logger. The arguments are interpreted
Page 1 of 15