fix: remove extra console log

This commit is contained in:
Skillz4Killz
2021-04-08 16:29:54 +00:00
committed by GitHub
parent 170a59f10a
commit 28628724d6

View File

@@ -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;