From fa1646f8484e6d25f3f5778d9bf8832be272eb63 Mon Sep 17 00:00:00 2001 From: Loan Robert Date: Thu, 25 Apr 2024 12:33:04 +0200 Subject: [PATCH] Change gunicorn logging level to info for production --- web/misc/run_webserver.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/misc/run_webserver.sh b/web/misc/run_webserver.sh index 4f2658b1..b506e8e7 100644 --- a/web/misc/run_webserver.sh +++ b/web/misc/run_webserver.sh @@ -3,4 +3,4 @@ # DB Migration flask db upgrade &>> /var/log/flask-migrate.log -gunicorn --chdir /opt/bbb-visio --bind 0.0.0.0:5000 --log-level warning --access-logfile /var/log/gunicorn-access.log --error-logfile /var/log/gunicorn-error.log wsgi:app +gunicorn --chdir /opt/bbb-visio --bind 0.0.0.0:5000 --log-level info --access-logfile /var/log/gunicorn-access.log --error-logfile /var/log/gunicorn-error.log wsgi:app