Skip to content

Commit

Permalink
feat(docker): configure gunicorn logging
Browse files Browse the repository at this point in the history
This gives a better insight in case something goes wrong.
  • Loading branch information
nijel committed Dec 4, 2024
1 parent 5607205 commit 92e2dac
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions weblate/settings_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,13 @@
"django_auth_ldap": {"handlers": [DEFAULT_LOG], "level": DEFAULT_LOGLEVEL},
# SAML IdP
"djangosaml2idp": {"handlers": [DEFAULT_LOG], "level": DEFAULT_LOGLEVEL},
# gunicorn
"gunicorn.error": {
"level": "INFO",
"handlers": [DEFAULT_LOG],
"propagate": True,
"qualname": "gunicorn.error",
},
},
}

Expand Down

0 comments on commit 92e2dac

Please sign in to comment.