From 0507c3602c2cd7a32e97f97f29d5af40c54eb846 Mon Sep 17 00:00:00 2001 From: Rushan Date: Fri, 18 Oct 2024 18:20:47 +0200 Subject: [PATCH] Improve logging for custom exceptions in routing --- fastapi/routing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi/routing.py b/fastapi/routing.py index 8ea4bb219..84a795d30 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -283,7 +283,7 @@ def get_request_handler( raise except Exception as e: http_error = HTTPException( - status_code=400, detail="There was an error parsing the body" + status_code=400, detail=f"There was an error parsing the body: {e}" ) raise http_error from e errors: List[Any] = []