handle(record) Handle a record. This just loops through the handlers offering them the record
createSocket() Tries to create a socket; on failure, uses an exponential back-off algorithm. On initial failure, the handler
handleError() Handles an error which has occurred during emit(). The most likely cause is a lost connection. Closes
class logging.handlers.MemoryHandler(capacity, flushLevel=ERROR, target=None) Returns a new instance of the MemoryHandler
prepare(record) Prepare a record for handling. This implementation just returns the passed-in
class logging.Logger
emit(record) If a formatter is specified, it is used to format the record. The record is then written to the stream with a terminator
getMessage() Returns the message for this LogRecord instance after merging any user-supplied arguments with the
send(s) Send a pickled string to a socket.
logging.config.dictConfig(config) Takes the logging configuration from a dictionary. The contents of this dictionary are described
Page 5 of 15