Skip to content

Commit

Permalink
Fix gunicorn double-logging
Browse files Browse the repository at this point in the history
  • Loading branch information
lalinsky committed Feb 24, 2024
1 parent 51c670c commit c68700f
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions acoustid/gunicorn_config.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
logconfig_dict = {
"version": 1,
"disable_existing_loggers": True,
"root": {"level": "INFO", "handlers": ["error_console"]},
"disable_existing_loggers": False,
"root": {"level": "INFO", "handlers": []},
"loggers": {
"gunicorn.error": {
"level": "INFO",
"handlers": ["error_console"],
"propagate": False,
"propagate": True,
"qualname": "gunicorn.error",
},
"gunicorn.access": {
"level": "ERROR",
"handlers": ["null"],
"propagate": False,
"qualname": "gunicorn.access",
},
},
"handlers": {
"null": {
Expand Down

0 comments on commit c68700f

Please sign in to comment.