more prominent warnings

pull/83/head
Aevann 2022-12-25 06:36:08 +02:00
parent 93aa222542
commit c5e782e3f0
1 changed files with 5 additions and 3 deletions

View File

@ -16,12 +16,14 @@ def worker_abort(worker):
try:
from flask import g, request
if g and request:
worker.log.warning(f"\n\nWhile serving {request.method} {request.url}")
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}\n\n")
worker.log.warning(f"User: {u.username!r} id:{u.id}")
else:
worker.log.warning(f"User: not logged in\n\n")
worker.log.warning(f"User: not logged in")
worker.log.warning(f"\n")
else:
worker.log.warning("No request info")
except: