formatTime(record, datefmt=None) This method should be called from
Logger.filter(record) Applies this logger’s filters to the record and returns a true value if the record is to be processed
emit(record) The record is formatted, and then sent to the syslog server. If exception information is present, it is not
filter(record) Is the specified record to be logged? Returns zero for no, nonzero for yes. If deemed appropriate, the record
logging.getLogRecordFactory() Return a callable which is used to create a LogRecord.
class logging.handlers.QueueListener(queue, *handlers, respect_handler_level=False) Returns a new instance of the QueueListener
logging.error(msg, *args, **kwargs) Logs a message with level ERROR on the root logger. The arguments are interpreted
dequeue(block) Dequeues a record and return it, optionally blocking. The base implementation
Logger.warning(msg, *args, **kwargs) Logs a message with level WARNING on this logger. The arguments are interpreted
close() Closes the file.
Page 1 of 15