Handler.handle(record) Conditionally emits the specified logging record, depending on filters which may have been added to the
Handler.filter(record) Applies this handler’s filters to the record and returns a true value if the record is to be processed
class logging.handlers.RotatingFileHandler(filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=False) Returns
emit(record) Outputs the record to the file.
Handler.close() Tidy up any resources used by the handler. This version does no output but removes the handler from an internal
process(msg, kwargs) Modifies the message and/or keyword arguments passed to a logging call in order to insert contextual information
Handler.setFormatter(form) Sets the Formatter for this handler to form.
class logging.handlers.DatagramHandler(host, port) Returns a new instance of the DatagramHandler class intended
logging.shutdown() Informs the logging system to perform an orderly shutdown by flushing and closing all handlers. This should
emit(record) Outputs the record to the file, but first checks to see if the file has changed. If it has, the existing stream
Page 7 of 15