Skip to content

Commit

Permalink
Merge pull request #123 from ceph/fix-double-log
Browse files Browse the repository at this point in the history
config.py.in: Fix duplicate log messages
  • Loading branch information
zmc authored Mar 19, 2024
2 parents 27576bd + d49dcd3 commit 388a1a4
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 388a1a4

Please sign in to comment.