diff --git a/router.py b/router.py index 327792d..cc2d72a 100644 --- a/router.py +++ b/router.py @@ -5,6 +5,7 @@ from fastapi import FastAPI, Request +from logger import debug_log from fast_api import FastAPIProxyRedirect @@ -17,4 +18,6 @@ Catch-all route that passes the request to the proxy logic and returns the response. """ proxy = FastAPIProxyRedirect(request) + debug_log(f"Request made") + return proxy.get_response()