From 774fe78d3fe30d3a5a85980e88e83c40884a9651 Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Fri, 14 Jun 2024 12:43:06 -0300 Subject: [PATCH] chore: gunicorn access logs / capture_output (#7534) --- dev/build/datatracker-start.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev/build/datatracker-start.sh b/dev/build/datatracker-start.sh index 7fee9394f..c6f9f3bf4 100644 --- a/dev/build/datatracker-start.sh +++ b/dev/build/datatracker-start.sh @@ -26,6 +26,8 @@ gunicorn \ --timeout "${DATATRACKER_GUNICORN_TIMEOUT:-180}" \ --bind :8000 \ --log-level "${DATATRACKER_GUNICORN_LOG_LEVEL:-info}" \ + --capture-output \ + --access-logfile -\ ${DATATRACKER_GUNICORN_EXTRA_ARGS} \ ietf.wsgi:application & gunicorn_pid=$!