From 0429a0f811cc656daf9cc9122f3f38a10eaadac4 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 25 Jan 2021 10:40:20 +0100 Subject: [PATCH] Hide DEBUG log from asyncio --- src/pretix/settings.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pretix/settings.py b/src/pretix/settings.py index a81a053e3a..2b86c8d0a9 100644 --- a/src/pretix/settings.py +++ b/src/pretix/settings.py @@ -654,7 +654,11 @@ LOGGING = { 'handlers': ['file', 'console'], 'level': 'INFO', # Do not output all the queries 'propagate': True, - } + }, + 'asyncio': { + 'handlers': ['file', 'console'], + 'level': 'WARNING', + }, }, }