From 9a6fcdd13c6fed31f09f0843d42094904de63562 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 10 Dec 2018 17:54:53 +0400 Subject: [PATCH] :loud_sound: Log body parsing errors --- fastapi/__init__.py | 2 +- fastapi/openapi/models.py | 5 +++-- fastapi/routing.py | 3 ++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/fastapi/__init__.py b/fastapi/__init__.py index d27c0eab7..1275415fa 100644 --- a/fastapi/__init__.py +++ b/fastapi/__init__.py @@ -1,6 +1,6 @@ """FastAPI framework, high performance, easy to learn, fast to code, ready for production""" -__version__ = "0.1.4" +__version__ = "0.1.5" from .applications import FastAPI from .routing import APIRouter diff --git a/fastapi/openapi/models.py b/fastapi/openapi/models.py index eb49dc96b..7cdee02a4 100644 --- a/fastapi/openapi/models.py +++ b/fastapi/openapi/models.py @@ -10,9 +10,10 @@ try: from pydantic.types import EmailStr # type: ignore except ImportError: logging.warning( - "email-validator not installed, email fields will be treated as str.\n" + - "To install, run: pip install email-validator" + "email-validator not installed, email fields will be treated as str.\n" + + "To install, run: pip install email-validator" ) + class EmailStr(str): # type: ignore pass diff --git a/fastapi/routing.py b/fastapi/routing.py index 6349fa9b6..57ed655cb 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -61,7 +61,8 @@ def get_app( body[field] = value else: body = await request.json() - except Exception: + except Exception as e: + logging.error("Error getting request body", e) raise HTTPException( status_code=400, detail="There was an error parsing the body" )