(self, conf, **kwargs)
| 1570 | """ |
| 1571 | |
| 1572 | def apply_config(self, conf, **kwargs): |
| 1573 | file = io.StringIO(textwrap.dedent(conf)) |
| 1574 | logging.config.fileConfig(file, encoding="utf-8", **kwargs) |
| 1575 | |
| 1576 | def test_config0_ok(self): |
| 1577 | # A simple config file which overrides the default settings. |
no test coverage detected