Logger.propagate If this evaluates to true, events logged to this logger will be passed to the handlers of higher level (ancestor)
encodePriority(facility, priority) Encodes the facility and priority into an integer. You can pass in strings or integers -
Logger.hasHandlers() Checks to see if this logger has any handlers configured. This is done by looking for handlers in this
logging.shutdown() Informs the logging system to perform an orderly shutdown by flushing and closing all handlers. This should
flush() Flushes the stream by calling its flush() method. Note that the close() method is inherited
emit(record) This method does nothing.
logging.warning(msg, *args, **kwargs) Logs a message with level WARNING on the root logger. The arguments are interpreted
class logging.handlers.HTTPHandler(host, url, method='GET', secure=False, credentials=None, context=None) Returns a new instance
emit(record) Enqueues the result of preparing the LogRecord.
Logger.error(msg, *args, **kwargs) Logs a message with level ERROR on this logger. The arguments are interpreted
Page 9 of 15