(self, level: int, pattern: str, *args: list[Any])
| 340 | return a |
| 341 | |
| 342 | def _log(self, level: int, pattern: str, *args: list[Any]) -> None: |
| 343 | if level < self.verbose: |
| 344 | new_args = [self._log_arg(a) for a in args] |
| 345 | print(pattern % tuple(new_args)) # noqa: T201 |
| 346 | |
| 347 | @property |
| 348 | def input_names(self): |