getMessageID(record) Returns the message ID for the record. If you are using your own messages, you could do this by having
process(msg, kwargs) Modifies the message and/or keyword arguments passed to a logging call in order to insert contextual information
logging.config.stopListening() Stops the listening server which was created with a call to listen(). This is typically
Logger.propagate If this evaluates to true, events logged to this logger will be passed to the handlers of higher level (ancestor)
Handler.filter(record) Applies this handler’s filters to the record and returns a true value if the record is to be processed
emit() Pickles the record’s attribute dictionary and writes it to the socket in binary format. If there is an error with the
encodePriority(facility, priority) Encodes the facility and priority into an integer. You can pass in strings or integers -
logging.addLevelName(lvl, levelName) Associates level lvl with text levelName in an internal dictionary, which
Handler.close() Tidy up any resources used by the handler. This version does no output but removes the handler from an internal
class logging.handlers.BaseRotatingHandler(filename, mode, encoding=None, delay=False) The parameters are as for FileHandler
Page 8 of 15