From 313ed57923f549f785b595005129c64ad8b2516c Mon Sep 17 00:00:00 2001 From: Aevann Date: Tue, 16 Apr 2024 16:05:20 +0200 Subject: [PATCH] print request values --- gunicorn.conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gunicorn.conf.py b/gunicorn.conf.py index dccae1a94..6da71319c 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -27,6 +27,7 @@ def worker_abort(worker): worker.log.warning(f"User: {u.username!r} id:{u.id}") else: worker.log.warning(f"User: not logged in") + worker.log.warning(dict(request.values)) worker.log.warning(STARS) else: worker.log.warning("No request info")