Hide DEBUG log from asyncio

This commit is contained in:
Raphael Michel
2021-01-25 10:40:20 +01:00
parent c2ba312bad
commit 0429a0f811

View File

@@ -654,7 +654,11 @@ LOGGING = {
'handlers': ['file', 'console'],
'level': 'INFO', # Do not output all the queries
'propagate': True,
}
},
'asyncio': {
'handlers': ['file', 'console'],
'level': 'WARNING',
},
},
}