(msg: str, *args, **kwargs)
| 187 | |
| 188 | @staticmethod |
| 189 | def info(msg: str, *args, **kwargs): |
| 190 | logger = SQLBotLogUtil._get_logger() |
| 191 | if logger.isEnabledFor(logging.INFO): |
| 192 | logger._log(logging.INFO, msg, args, **kwargs) |
| 193 | |
| 194 | @staticmethod |
| 195 | def warning(msg: str, *args, **kwargs): |
no test coverage detected