add print statements for debugging /stats

pull/83/head
Aevann1 2022-12-21 00:50:51 +02:00
parent 7fabf323f8
commit a7ec033698
2 changed files with 5 additions and 0 deletions

View File

@ -43,7 +43,10 @@ def cron(every_5m, every_1h, every_1d, every_1mo):
stats.generate_charts_task(SITE)
_sub_inactive_purge_task()
site_stats = stats.stats(SITE_NAME)
print(site_stats, flush=True)
cache.set(f'{SITE}_stats', site_stats)
print('redised', flush=True)
print(cache.get(f'{SITE}_stats'), flush=True)
if every_1mo:
if KOFI_LINK: _give_monthly_marseybux_task_kofi()

View File

@ -84,7 +84,9 @@ def sidebar(v:Optional[User]):
@app.get("/stats")
@auth_required
def participation_stats(v:User):
print(cache.get(f'{SITE}_stats'), flush=True)
stats = cache.get(f'{SITE}_stats') or {}
print(stats, flush=True)
if v.client: return stats
return render_template("stats.html", v=v, title="Content Statistics", data=stats)