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;