(self, msg: str, *args: Any)
| 2404 | ) |
| 2405 | |
| 2406 | def _log(self, msg: str, *args: Any) -> None: |
| 2407 | self.logger.info("%s " + msg, *((self._log_desc,) + args)) |
| 2408 | |
| 2409 | def _log_debug(self, msg: str, *args: Any) -> None: |
| 2410 | self.logger.debug("%s " + msg, *((self._log_desc,) + args)) |
no test coverage detected