From d49dcd3e1f247c589c2f3a6dfd32e1e89725d131 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 1 Feb 2024 12:10:01 -0700 Subject: [PATCH] config.py.in: Fix duplicate log messages Signed-off-by: Zack Cerza --- config.py.in | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config.py.in b/config.py.in index ced22b0..2777daf 100644 --- a/config.py.in +++ b/config.py.in @@ -65,12 +65,20 @@ app = { } logging = { + 'version': 1, 'disable_existing_loggers': False, + 'root': {'level': 'INFO', 'handlers': []}, 'loggers': { 'root': {'level': 'INFO', 'handlers': ['console']}, 'paddles': {'level': 'DEBUG', 'handlers': ['console']}, 'sqlalchemy': {'level': 'WARN', 'handlers': ['console']}, 'py.warnings': {'handlers': ['console']}, + 'gunicorn.error': { + 'level': 'INFO', + 'handlers': ['console'], + 'propagate': False, + 'qualname': 'gunicorn.error' + }, '__force_dict__': True }, 'handlers': {