logging.addLevelName()

logging.addLevelName(lvl, levelName) Associates level lvl with text levelName in an internal dictionary, which

2016-10-07 17:35:59
logging.Handler.filter()

Handler.filter(record) Applies this handler’s filters to the record and returns a true value if the record is to be processed

2016-10-07 17:36:05
logging.handlers.NTEventLogHandler.getEventType()

getEventType(record) Returns the event type for the record. Override this if you want to specify your own types. This version

2016-10-07 17:36:12
logging.handlers.DatagramHandler

class logging.handlers.DatagramHandler(host, port) Returns a new instance of the DatagramHandler class intended

2016-10-07 17:36:09
logging.LoggerAdapter.process()

process(msg, kwargs) Modifies the message and/or keyword arguments passed to a logging call in order to insert contextual information

2016-10-07 17:36:24
logging.handlers.SocketHandler.emit()

emit() Pickles the record’s attribute dictionary and writes it to the socket in binary format. If there is an error with the

2016-10-07 17:36:16
logging.Handler.setFormatter()

Handler.setFormatter(form) Sets the Formatter for this handler to form.

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

Logger.debug(msg, *args, **kwargs) Logs a message with level DEBUG on this logger. The msg is the message

2016-10-07 17:36:20
logging.Handler.format()

Handler.format(record) Do formatting for a record - if a formatter is set, use it. Otherwise, use the default formatter for

2016-10-07 17:36:06
logging.handlers.SocketHandler.makePickle()

makePickle(record) Pickles the record’s attribute dictionary in binary format with a length prefix, and returns it ready for

2016-10-07 17:36:16