From 2c303b03950165c10eaffe5afccdc966401ba4c0 Mon Sep 17 00:00:00 2001 From: Skillz Date: Thu, 28 May 2020 21:11:17 -0400 Subject: [PATCH] add shardid to debug heartbeat --- module/shard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/shard.ts b/module/shard.ts index 0237387af..773a57975 100644 --- a/module/shard.ts +++ b/module/shard.ts @@ -69,7 +69,7 @@ async function sendConstantHeartbeats( shardSocket.send( JSON.stringify({ op: GatewayOpcode.Heartbeat, d: previousSequenceNumber }), ); - postDebug({ type: 'heartbeat', data: { interval, previousSequenceNumber }}) + postDebug({ type: 'heartbeat', data: { interval, previousSequenceNumber, shardID }}) sendConstantHeartbeats(interval); }