close() Closes the socket.
class logging.LogRecord(name, level, pathname, lineno, msg, args, exc_info, func=None, sinfo=None) Contains all the information
makeSocket() The factory method of SocketHandler is here overridden to create a UDP socket (
shouldFlush(record) Checks for buffer full or a record at the flushLevel or higher.
Handler.flush() Ensure all logging output has been flushed. This version does nothing and is intended to be implemented by subclasses
class logging.handlers.BufferingHandler(capacity) Initializes the handler with a buffer of the specified capacity.
logging.critical(msg, *args, **kwargs) Logs a message with level CRITICAL on the root logger. The arguments are
Logger.setLevel(lvl) Sets the threshold for this logger to lvl. Logging messages which are less severe than lvl
Handler.emit(record) Do whatever it takes to actually log the specified logging record. This version is intended to be implemented
logging.debug(msg, *args, **kwargs) Logs a message with level DEBUG on the root logger. The msg is the
Page 14 of 15