Typo
All checks were successful
Build & Publish to GHCR / build (push) Successful in 30s

This commit is contained in:
Florian 2025-10-20 12:55:40 +02:00
parent a55d1b324c
commit 378f8cf06f

View File

@ -65,7 +65,7 @@ async def prometheus_middleware(request: Request, call_next):
response = await call_next(request)
status = response.status_code
logger.debug(f"Request processed with status {status}")
except Exception:
except Exception as e:
logger.exception(f"Exception during request processing: {e}")
raise
finally: