diff options
| author | 2022-05-30 19:57:45 -0700 | |
|---|---|---|
| committer | 2022-05-30 19:57:45 -0700 | |
| commit | 8f62c90a96e3634c2d41cda96afefaff5c1fb54d (patch) | |
| tree | 07f9a21a57306267a864123558b1a00ed32bd680 /config | |
| parent | Move coverage config into pyproject.toml (diff) | |
Move logging code to separate utility modules
Diffstat (limited to 'config')
| -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 5ab11f4..5812c07 100644 --- a/config/gunicorn.conf.py +++ b/config/gunicorn.conf.py @@ -1,5 +1,5 @@ workers = 2 bind = "0.0.0.0:8060" -logger_class = "snekbox.GunicornLogger" +logger_class = "snekbox.utils.gunicorn.GunicornLogger" access_logformat = "%(m)s %(U)s%(q)s %(s)s %(b)s %(L)ss" access_logfile = "-" |