Revert "add print statements for debugging /stats"

This reverts commit a7ec033698.
pull/83/head
Aevann1 2022-12-21 01:00:26 +02:00
parent a7ec033698
commit 1b7eb7cb87
2 changed files with 0 additions and 5 deletions

View File

@ -43,10 +43,7 @@ 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,9 +84,7 @@ 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)