diff --git a/server.py b/server.py index cc83531..9a57cb9 100644 --- a/server.py +++ b/server.py @@ -43,6 +43,9 @@ logging.basicConfig( format="%(asctime)s:%(levelname)s:%(name)s:%(message)s", datefmt="%d/%m/%Y %H:%M:%S" ) +logging.getLogger("httpcore.connection").setLevel(logging.INFO) +logging.getLogger("httpcore.http11").setLevel(logging.INFO) +logging.getLogger("httpx").setLevel(logging.INFO) app = fastapi.FastAPI( root_path=os.environ.get("PREVIEW_ROOT_PATH", ""), lifespan=startup