From 9b7887b279d4c0e3aead089a1c8ac2e85a9857ce Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Sun, 4 Aug 2024 20:23:41 -0400 Subject: [PATCH] Update gunicorn.conf.py --- src/gunicorn.conf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gunicorn.conf.py b/src/gunicorn.conf.py index 1e1997e..cd16721 100644 --- a/src/gunicorn.conf.py +++ b/src/gunicorn.conf.py @@ -12,10 +12,10 @@ bind = f"{app_host}:{app_port}" daemon = True pidfile = './gunicorn.pid' wsgi_app = "dashboard:app" -access_log = f"./log/access_{date}.log" +accesslog = f"./log/access_{date}.log" log_level = "debug" capture_output = True -error_log = f"./log/error_{date}.log" +errorlog = 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_log}", flush=True) -print(f"[WGDashboard] Error log file is at ./log/{error_log}", flush=True) +print(f"[WGDashboard] Access log file is at ./log/{accesslog}", flush=True) +print(f"[WGDashboard] Error log file is at ./log/{errorlog}", flush=True)