logging.handlers.TimedRotatingFileHandler.doRollover()
  • References/Python/Python/Logging

doRollover() Does a rollover, as described above.

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.handlers.BaseRotatingHandler.namer
  • References/Python/Python/Logging

namer If this attribute is set to a callable, the rotation_filename() method delegates to this callable. The parameters

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

close() At this point, you can remove the application name from the registry as a source of event log entries. However, if you

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

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

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

getEventCategory(record) Returns the event category for the record. Override this if you want to specify your own categories

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

class logging.Logger

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

prepare(record) Prepare a record for handling. This implementation just returns the passed-in

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

Logger.findCaller(stack_info=False) Finds the caller’s source filename and line number. Returns the filename, line number, function

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

logging.disable(lvl) Provides an overriding level lvl for all loggers which takes precedence over the logger’s own

2025-01-10 15:47:30