CustomLogger
A custom logger class that automatically includes exception information when logging with error, critical, or fatal levels.
- logman.custom_logger.CustomLogger.error(msg, *args, **kwargs)
Logs a message with level ERROR on this logger. Automatically includes exception information if not provided.
- logman.custom_logger.CustomLogger.critical(msg, *args, **kwargs)
Logs a message with level CRITICAL on this logger. Automatically includes exception information if not provided.
- logman.custom_logger.CustomLogger.fatal(msg, *args, **kwargs)
Logs a message with level FATAL on this logger. Automatically includes exception information if not provided.