We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44ee4e9 commit 93ada57Copy full SHA for 93ada57
1 file changed
tests/test_utils_cli.py
@@ -1,4 +1,5 @@
1
import logging
2
+from logging.config import dictConfig
3
4
from pytest import LogCaptureFixture
5
@@ -63,7 +64,7 @@ def test_log_config_does_not_disable_existing_loggers(
63
64
logger1.setLevel(logging.INFO)
65
logger1.info("Message before configuration")
66
- logging.config.dictConfig(get_uvicorn_log_config())
67
+ dictConfig(get_uvicorn_log_config())
68
69
logger2 = logging.getLogger(__name__)
70
0 commit comments