Browse Source

🔇 Remove error log when parsing malformed JSON body as it's a client error (#1351)

pull/1569/head
Dylan Anthony 5 years ago
committed by GitHub
parent
commit
2351fb5623
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      fastapi/routing.py

1
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

Loading…
Cancel
Save