From 2351fb5623b747f480d8c91af53dc7b3e9736e45 Mon Sep 17 00:00:00 2001 From: Dylan Anthony <43723790+dbanty@users.noreply.github.com> Date: Fri, 12 Jun 2020 16:44:40 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=87=20Remove=20error=20log=20when=20pa?= =?UTF-8?q?rsing=20malformed=20JSON=20body=20as=20it's=20a=20client=20erro?= =?UTF-8?q?r=20(#1351)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi/routing.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fastapi/routing.py b/fastapi/routing.py index 3ac420e6e..dab751a09 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -179,7 +179,6 @@ def get_request_handler( if body_bytes: body = await request.json() except Exception as e: - logger.error(f"Error getting request body: {e}") raise HTTPException( status_code=400, detail="There was an error parsing the body" ) from e