logging.error(msg, *args, **kwargs) Logs a message with level ERROR on the root logger. The arguments are interpreted
logging.disable(lvl) Provides an overriding level lvl for all loggers which takes precedence over the logger’s own
Handler.__init__(level=NOTSET) Initializes the Handler instance by setting its level, setting the list of filters
doRollover() Does a rollover, as described above.
class logging.NullHandler Returns a new instance of the NullHandler class.
getEventCategory(record) Returns the event category for the record. Override this if you want to specify your own categories
createLock() This method returns None for the lock, since there is no underlying I/O to which access needs to be
shouldFlush(record) Returns true if the buffer is up to capacity. This method can be overridden to implement custom flushing
class logging.handlers.QueueHandler(queue) Returns a new instance of the QueueHandler class. The instance is initialized
Logger.findCaller(stack_info=False) Finds the caller’s source filename and line number. Returns the filename, line number, function
Page 3 of 15