(self)
| 288 | self._configure_logging() |
| 289 | |
| 290 | def _configure_logging(self) -> None: |
| 291 | config = self.get_default_logging_config() |
| 292 | nested_update(config, self.logging_config or {}) |
| 293 | dictConfig(config) |
| 294 | # make a note that we have configured logging |
| 295 | self._logging_configured = True |
| 296 | |
| 297 | @default("log") |
| 298 | def _log_default(self) -> AnyLogger: |
no test coverage detected