(msg: str, *args, exc_info: Optional[bool] = None, **kwargs)
| 199 | |
| 200 | @staticmethod |
| 201 | def error(msg: str, *args, exc_info: Optional[bool] = None, **kwargs): |
| 202 | logger = SQLBotLogUtil._get_logger() |
| 203 | if logger.isEnabledFor(logging.ERROR): |
| 204 | logger._log( |
| 205 | logging.ERROR, |
| 206 | msg, |
| 207 | args, |
| 208 | exc_info=exc_info if exc_info is not None else True, |
| 209 | **kwargs |
| 210 | ) |
| 211 | |
| 212 | @staticmethod |
| 213 | def exception(msg: str, *args, **kwargs): |
no test coverage detected