(msg: str, *args, **kwargs)
| 181 | |
| 182 | @staticmethod |
| 183 | def debug(msg: str, *args, **kwargs): |
| 184 | logger = SQLBotLogUtil._get_logger() |
| 185 | if logger.isEnabledFor(logging.DEBUG): |
| 186 | logger._log(logging.DEBUG, msg, args, **kwargs) |
| 187 | |
| 188 | @staticmethod |
| 189 | def info(msg: str, *args, **kwargs): |
no test coverage detected