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

This commit is contained in:
Florian 2025-11-04 11:39:31 +01:00
parent f2286febc1
commit 84bc62610d

View File

@ -60,7 +60,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: