Logger.critical(msg, *args, **kwargs) Logs a message with level CRITICAL on this logger. The arguments are interpreted
Handler.handleError(record) This method should be called from handlers when an exception is encountered during an emit()
logging.getLevelName(lvl) Returns the textual representation of logging level lvl. If the level is one of the predefined
logging.makeLogRecord(attrdict) Creates and returns a new LogRecord instance whose attributes are defined by attrdict
emit(record) Outputs the record to the file, catering for rollover as described above.
rotate(source, dest) When rotating, rotate the current log. The default implementation calls
class logging.Filter(name='') Returns an instance of the Filter class. If name is specified, it names
class logging.handlers.SocketHandler(host, port) Returns a new instance of the SocketHandler class intended to
mapLogRecord(record) Provides a dictionary, based on record, which is to be URL-encoded and sent to the web server
emit() Pickles the record’s attribute dictionary and writes it to the socket in binary format. If there is an error with the
Page 11 of 15