logging.handlers.MemoryHandler.shouldFlush()

shouldFlush(record) Checks for buffer full or a record at the flushLevel or higher.

2016-10-07 17:36:11
logging.config.listen()

logging.config.listen(port=DEFAULT_LOGGING_CONFIG_PORT, verify=None) Starts up a socket server on the specified port, and listens

2016-10-07 17:36:00
logging.Logger.log()

Logger.log(lvl, msg, *args, **kwargs) Logs a message with integer level lvl on this logger. The other arguments are

2016-10-07 17:36:22
logging.handlers.BufferingHandler

class logging.handlers.BufferingHandler(capacity) Initializes the handler with a buffer of the specified capacity.

2016-10-07 17:36:08
logging.handlers.SocketHandler.makeSocket()

makeSocket() This is a factory method which allows subclasses to define the precise type of socket they want. The default implementation

2016-10-07 17:36:17
logging.handlers.DatagramHandler.makeSocket()

makeSocket() The factory method of SocketHandler is here overridden to create a UDP socket (

2016-10-07 17:36:09
logging.handlers.SMTPHandler.getSubject()

getSubject(record) If you want to specify a subject line which is record-dependent, override this method.

2016-10-07 17:36:15
logging.handlers.SocketHandler.close()

close() Closes the socket.

2016-10-07 17:36:16
logging.Formatter.formatException()

formatException(exc_info) Formats the specified exception information (a standard exception tuple as returned by

2016-10-07 17:36:03
logging.critical()

logging.critical(msg, *args, **kwargs) Logs a message with level CRITICAL on the root logger. The arguments are

2016-10-07 17:36:01