diff options
| author | 2023-09-16 11:51:40 -0700 | |
|---|---|---|
| committer | 2023-10-27 11:59:01 -0700 | |
| commit | 56376361a941383555e2db129baf34250d409b06 (patch) | |
| tree | bf82c21e75140088f769ab35ff0e3a3646a752ba /config/gunicorn.conf.py | |
| parent | Merge #195 - Python 3.12 (diff) | |
Refactor modules into subpackages
Diffstat (limited to 'config/gunicorn.conf.py')
| -rw-r--r-- | config/gunicorn.conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/gunicorn.conf.py b/config/gunicorn.conf.py index 5e492bb..02f02a0 100644 --- a/config/gunicorn.conf.py +++ b/config/gunicorn.conf.py @@ -1,6 +1,6 @@ workers = 2 bind = "0.0.0.0:8060" -logger_class = "snekbox.utils.gunicorn.GunicornLogger" +logger_class = "snekbox.logging.GunicornLogger" access_logformat = "%(m)s %(U)s%(q)s %(s)s %(b)s %(L)ss" access_logfile = "-" wsgi_app = "snekbox:SnekAPI()" |