the request is prolly boned anyway, let's help friends help me :)

pull/16/head
justcool393 2022-11-25 20:57:10 -06:00
parent 1b9bb2960d
commit cfffbc61a0
1 changed files with 3 additions and 1 deletions

View File

@ -24,10 +24,12 @@ def calc_users(v):
if request:
print(f"while serving {request.method} {request.full_path}")
print(f"user agent: {getattr(g, 'agent', '-attribute not present-')}")
print(f"xhr? {request.headers.get('xhr')} / API client? {bool(request.headers.get('Authorization'))}")
else:
print("no request context")
print(f"v: {v}")
print(f"db?: {bool(getattr(g, 'db', None))}")
print(f"db?: {hasattr(g, 'db')}")
abort(500, "hi!! it's @justcool393! If you get this could you PM me and tell me how you got this? i'm trying to figure something out and if you can help I'll really appreciate it <3")
# end temp logging code
loggedin = cache.get(f'{SITE}_loggedin') or {}
loggedout = cache.get(f'{SITE}_loggedout') or {}