1 parent 7757a63 commit 00ee414Copy full SHA for 00ee414
2 files changed
app/core/logging.py
@@ -26,4 +26,6 @@ def configure_logging() -> None:
26
root.setLevel(level)
27
28
# Quiet down noisy third-party loggers
29
- logging.getLogger("uvicorn.access").setLevel(logging.WARNING if not settings.debug else logging.INFO)
+ logging.getLogger("uvicorn.access").setLevel(
30
+ logging.WARNING if not settings.debug else logging.INFO
31
+ )
app/main.py
@@ -6,8 +6,8 @@
6
7
from __future__ import annotations
8
9
-from contextlib import asynccontextmanager
10
from collections.abc import AsyncIterator
+from contextlib import asynccontextmanager
11
12
from fastapi import FastAPI
13
0 commit comments