diff --git a/packages/discordeno/gateway/shard/identify.ts b/packages/discordeno/gateway/shard/identify.ts index 3829101..b11bac5 100644 --- a/packages/discordeno/gateway/shard/identify.ts +++ b/packages/discordeno/gateway/shard/identify.ts @@ -5,7 +5,7 @@ export async function identify(shard: Shard): Promise { // A new identify has been requested even though there is already a connection open. // Therefore we need to close the old connection and heartbeating before creating a new one. if (shard.state === ShardState.Connected) { - console.log("CLOSING EXISTING SHARD: #" + shard.id); + // console.log("CLOSING EXISTING SHARD: #" + shard.id); shard.close(ShardSocketCloseCodes.ReIdentifying, "Re-identifying closure of old connection."); }