(msg: str, *args, **kwargs)
| 217 | |
| 218 | @staticmethod |
| 219 | def critical(msg: str, *args, **kwargs): |
| 220 | logger = SQLBotLogUtil._get_logger() |
| 221 | if logger.isEnabledFor(logging.CRITICAL): |
| 222 | logger._log(logging.CRITICAL, msg, args, **kwargs) |
| 223 | |
| 224 | def prepare_for_orjson(data): |
| 225 | if not data: |
nothing calls this directly
no test coverage detected