Skip to content

Commit

Permalink
config.py.in: Fix duplicate log messages
Browse files Browse the repository at this point in the history
Signed-off-by: Zack Cerza <[email protected]>
  • Loading branch information
zmc committed Feb 5, 2024
1 parent 79e5058 commit d49dcd3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions config.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -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': {
Expand Down

0 comments on commit d49dcd3

Please sign in to comment.