Skip to content

Commit

Permalink
Undoing some debugging configurations in the entrypoint scripts and b…
Browse files Browse the repository at this point in the history
…ase production settings.
  • Loading branch information
adrianwebb committed May 26, 2024
1 parent 64ebba7 commit eff850e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion compose/production/django/api/start
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ exec /usr/local/bin/gunicorn config.wsgi \
--limit-request-fields=0 \
--limit-request-line=0 \
--log-level=${GUNICORN_LOG_LEVEL:-info} \
--capture-output \
--access-logformat="[gunicorn] %(h)s '%(t)s' %(m)s %(U)s '%(q)s' %(s)s %(b)s '%(f)s' '%(a)s'" \
--access-logfile=- \
--error-logfile=- \
Expand Down
1 change: 0 additions & 1 deletion compose/production/django/ui/start
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ exec /usr/local/bin/gunicorn config.wsgi \
--limit-request-fields=0 \
--limit-request-line=0 \
--log-level=${GUNICORN_LOG_LEVEL:-info} \
--capture-output \
--access-logformat="[gunicorn] %(h)s '%(t)s' %(m)s %(U)s '%(q)s' %(s)s %(b)s '%(f)s' '%(a)s'" \
--access-logfile=- \
--error-logfile=- \
Expand Down
2 changes: 1 addition & 1 deletion config/settings/production/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"formatter": "verbose",
},
},
"root": {"level": "DEBUG", "handlers": ["console"]},
"root": {"level": "INFO", "handlers": ["console"]},
"loggers": {
"django.request": {
"handlers": ["mail_admins"],
Expand Down

0 comments on commit eff850e

Please sign in to comment.