Logger.setLevel(lvl) Sets the threshold for this logger to lvl. Logging messages which are less severe than lvl
close() Closes the socket.
logging.getLogger(name=None) Return a logger with the specified name or, if name is None, return a logger which
getSubject(record) If you want to specify a subject line which is record-dependent, override this method.
logging.critical(msg, *args, **kwargs) Logs a message with level CRITICAL on the root logger. The arguments are
makeSocket() The factory method of SocketHandler is here overridden to create a UDP socket (
class logging.LogRecord(name, level, pathname, lineno, msg, args, exc_info, func=None, sinfo=None) Contains all the information
class logging.handlers.SMTPHandler(mailhost, fromaddr, toaddrs, subject, credentials=None, secure=None, timeout=1.0) Returns
Handler.emit(record) Do whatever it takes to actually log the specified logging record. This version is intended to be implemented
enqueue(record) Enqueues the record on the queue using put_nowait(); you may want to override this if you want
Page 14 of 15