From 28628724d68fa5ccebd1ff9c2accaefafdccdde5 Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Thu, 8 Apr 2021 16:29:54 +0000 Subject: [PATCH] fix: remove extra console log --- src/ws/cleanup_loading_shards.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/ws/cleanup_loading_shards.ts b/src/ws/cleanup_loading_shards.ts index 05885608d..d5e0e9c4e 100644 --- a/src/ws/cleanup_loading_shards.ts +++ b/src/ws/cleanup_loading_shards.ts @@ -6,11 +6,6 @@ export async function cleanupLoadingShards() { while (ws.loadingShards.size) { const now = Date.now(); ws.loadingShards.forEach((loadingShard) => { - console.log( - now > loadingShard.startedAt + 60000, - now, - loadingShard.startedAt, - ); // Not a minute yet. Max should be few seconds but do a minute to be safe. if (now < loadingShard.startedAt + 60000) return;