pull/83/head
Aevann1 2022-12-21 22:12:15 +02:00
parent b6787874c6
commit 391363fb37
1 changed files with 2 additions and 0 deletions

View File

@ -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: