From fc6e02b71b205dfcf851f9a52e3088db9ed955da Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Mon, 27 Mar 2023 19:16:08 +0300 Subject: [PATCH] Add log level to gunicorn --- production_entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/production_entrypoint.sh b/production_entrypoint.sh index 0efc365..f226844 100755 --- a/production_entrypoint.sh +++ b/production_entrypoint.sh @@ -39,4 +39,4 @@ python manage.py migrate # Start server echo "Django running on http://localhost:8000 in production mode" -gunicorn -w 4 -b 0.0.0.0:8000 sikweb.wsgi \ No newline at end of file +gunicorn --log-level debug -w 4 -b 0.0.0.0:8000 sikweb.wsgi