From acb54f098c42312885b1a6f5d09c22e2ca925622 Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Sun, 4 Aug 2024 20:13:17 -0400 Subject: [PATCH] Update gunicorn.conf.py --- src/gunicorn.conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gunicorn.conf.py b/src/gunicorn.conf.py index f966f2e..cb95fac 100644 --- a/src/gunicorn.conf.py +++ b/src/gunicorn.conf.py @@ -16,3 +16,6 @@ access_logfile = f"./log/access_{date}.log" log_level = "debug" capture_output = True error_logfile = f"./log/error_{date}.log" +print(f"[WGDashboard] WGDashboard w/ Gunicorn will be running on {bind}", flush=True) +print(f"[WGDashboard] Access log file is at ./log/{access_logfile}", flush=True) +print(f"[WGDashboard] Error log file is at ./log/{error_logfile}", flush=True)