From 391363fb37557f33cf39444302be2eb9a6c49ce4 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Wed, 21 Dec 2022 22:12:15 +0200 Subject: [PATCH] \n --- gunicorn.conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gunicorn.conf.py b/gunicorn.conf.py index 81b9e8819..81b960537 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -14,12 +14,14 @@ def worker_abort(worker): try: from flask import g, request if g and request: + worker.log.warning(f"\n") worker.log.warning(f"While serving {request.method} {request.url}") u = getattr(g, 'v', None) if u: worker.log.warning(f"User: {u.username!r} id:{u.id}") else: worker.log.warning(f"User: not logged in") + worker.log.warning(f"\n") else: worker.log.warning("No request info") except: