(self, msg: str, *args: Any)
| 2478 | ) |
| 2479 | |
| 2480 | def _log(self, msg: str, *args: Any) -> None: |
| 2481 | self.logger.info("%s " + msg, *((self._log_desc,) + args)) |
| 2482 | |
| 2483 | def _log_debug(self, msg: str, *args: Any) -> None: |
| 2484 | self.logger.debug("%s " + msg, *((self._log_desc,) + args)) |
no test coverage detected