logging.Logger.critical()
  • References/Python/Python/Logging

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

2025-01-10 15:47:30
logging.handlers.SocketHandler.send()
  • References/Python/Python/Logging

send(packet) Send a pickled string packet to the socket. This function allows for partial sends which can happen when

2025-01-10 15:47:30
logging.Logger.error()
  • References/Python/Python/Logging

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

2025-01-10 15:47:30
logging.handlers.DatagramHandler.emit()
  • References/Python/Python/Logging

emit() Pickles the record’s attribute dictionary and writes it to the socket in binary format. If there is an error with the

2025-01-10 15:47:30
logging.warning()
  • References/Python/Python/Logging

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

2025-01-10 15:47:30
logging.handlers.SocketHandler
  • References/Python/Python/Logging

class logging.handlers.SocketHandler(host, port) Returns a new instance of the SocketHandler class intended to

2025-01-10 15:47:30
logging.Filter
  • References/Python/Python/Logging

class logging.Filter(name='') Returns an instance of the Filter class. If name is specified, it names

2025-01-10 15:47:30
logging.info()
  • References/Python/Python/Logging

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

2025-01-10 15:47:30
logging.getLevelName()
  • References/Python/Python/Logging

logging.getLevelName(lvl) Returns the textual representation of logging level lvl. If the level is one of the predefined

2025-01-10 15:47:30
logging.handlers.SMTPHandler.emit()
  • References/Python/Python/Logging

emit(record) Formats the record and sends it to the specified addressees.

2025-01-10 15:47:30