()
| 743 | |
| 744 | @pytest.fixture(name="stdlib_logger") |
| 745 | def _stdlib_logger(): |
| 746 | logger = logging.getLogger("test_logger") |
| 747 | logger.setLevel(logging.DEBUG) |
| 748 | |
| 749 | yield logger |
| 750 | |
| 751 | logging.basicConfig() |
| 752 | |
| 753 | |
| 754 | class TestRenderToLogArgsAndKwargs: |
nothing calls this directly
no test coverage detected
searching dependent graphs…