logging.error()
  • References/Python/Python/Logging

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

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

logging.captureWarnings(capture) This function is used to turn the capture of warnings by logging on and off.

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

Logger.handle(record) Handles a record by passing it to all handlers associated with this logger and its ancestors (until a

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

handleError() Handles an error which has occurred during emit(). The most likely cause is a lost connection. Closes

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

class logging.handlers.TimedRotatingFileHandler(filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False, atTime=None)

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

Handler.setLevel(lvl) Sets the threshold for this handler to lvl. Logging messages which are less severe than lvl

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

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

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

Logger.makeRecord(name, lvl, fn, lno, msg, args, exc_info, func=None, extra=None, sinfo=None) This is a factory method which

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

send(s) Send a pickled string to a socket.

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

class logging.handlers.QueueHandler(queue) Returns a new instance of the QueueHandler class. The instance is initialized

2025-01-10 15:47:30