mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 08:50:07 +00:00
fix: remove extra console log
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user