From 3e93b42251db66e24ef25ba7bd3d2cc6aa91d0cb Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sat, 18 May 2024 08:13:37 -0500 Subject: [PATCH] stats: add a debug call --- src/stats.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stats.ts b/src/stats.ts index 71124961..256c570e 100644 --- a/src/stats.ts +++ b/src/stats.ts @@ -264,6 +264,7 @@ function refreshAuthorStatsDebounced(pubkey: string): void { } refreshedAuthors.set(pubkey, true); + debug('refreshing author stats:', pubkey); authorStatsSemaphore .lock(() => refreshAuthorStats(pubkey).catch(() => {}));