(msg: str, *args, **kwargs)
| 211 | |
| 212 | @staticmethod |
| 213 | def exception(msg: str, *args, **kwargs): |
| 214 | logger = SQLBotLogUtil._get_logger() |
| 215 | if logger.isEnabledFor(logging.ERROR): |
| 216 | logger._log(logging.ERROR, msg, args, exc_info=True, **kwargs) |
| 217 | |
| 218 | @staticmethod |
| 219 | def critical(msg: str, *args, **kwargs): |
no test coverage detected