logging.error(msg, *args, **kwargs) Logs a message with level ERROR on the root logger. The arguments are interpreted
logging.captureWarnings(capture) This function is used to turn the capture of warnings by logging on and off.
Logger.handle(record) Handles a record by passing it to all handlers associated with this logger and its ancestors (until a
handleError() Handles an error which has occurred during emit(). The most likely cause is a lost connection. Closes
class logging.handlers.TimedRotatingFileHandler(filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False, atTime=None)
Handler.setLevel(lvl) Sets the threshold for this handler to lvl. Logging messages which are less severe than lvl
logging.exception(msg, *args, **kwargs) Logs a message with level ERROR on the root logger. The arguments are interpreted
Logger.makeRecord(name, lvl, fn, lno, msg, args, exc_info, func=None, extra=None, sinfo=None) This is a factory method which
send(s) Send a pickled string to a socket.
class logging.handlers.QueueHandler(queue) Returns a new instance of the QueueHandler class. The instance is initialized
Page 3 of 15