From 0752c7242dfc86344a9d1acab48b9a2c2209817c Mon Sep 17 00:00:00 2001 From: manlix Date: Sun, 9 Aug 2020 14:10:33 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8A=20Fix=20empty=20log=20message=20in?= =?UTF-8?q?=20docs=20example=20about=20raised=20exceptions=20(#1815)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs_src/handling_errors/tutorial006.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_src/handling_errors/tutorial006.py b/docs_src/handling_errors/tutorial006.py index 8cabc9c24..e05160d7e 100644 --- a/docs_src/handling_errors/tutorial006.py +++ b/docs_src/handling_errors/tutorial006.py @@ -11,7 +11,7 @@ app = FastAPI() @app.exception_handler(StarletteHTTPException) async def custom_http_exception_handler(request, exc): - print(f"OMG! An HTTP error!: {exc}") + print(f"OMG! An HTTP error!: {repr(exc)}") return await http_exception_handler(request, exc)