logging.Logger.propagate

Logger.propagate If this evaluates to true, events logged to this logger will be passed to the handlers of higher level (ancestor)

2016-10-07 17:36:23
logging.handlers.SysLogHandler.encodePriority()

encodePriority(facility, priority) Encodes the facility and priority into an integer. You can pass in strings or integers -

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

Logger.hasHandlers() Checks to see if this logger has any handlers configured. This is done by looking for handlers in this

2016-10-07 17:36:22
logging.shutdown()

logging.shutdown() Informs the logging system to perform an orderly shutdown by flushing and closing all handlers. This should

2016-10-07 17:36:26
logging.StreamHandler.flush()

flush() Flushes the stream by calling its flush() method. Note that the close() method is inherited

2016-10-07 17:36:27
logging.NullHandler.emit()

emit(record) This method does nothing.

2016-10-07 17:36:25
logging.warning()

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

2016-10-07 17:36:27
logging.handlers.HTTPHandler

class logging.handlers.HTTPHandler(host, url, method='GET', secure=False, credentials=None, context=None) Returns a new instance

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

emit(record) Enqueues the result of preparing the LogRecord.

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

Logger.error(msg, *args, **kwargs) Logs a message with level ERROR on this logger. The arguments are interpreted

2016-10-07 17:36:21