diff options
| -rw-r--r-- | src/client/gateway/prep.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/gateway/prep.rs b/src/client/gateway/prep.rs index 7b075b0..0f279df 100644 --- a/src/client/gateway/prep.rs +++ b/src/client/gateway/prep.rs @@ -127,7 +127,7 @@ pub fn keepalive(interval: u64, .insert("op", OpCode::Heartbeat.num()) .build(); - debug!("Sending heartbeat d: {}", last_sequence); + trace!("Sending heartbeat d: {}", last_sequence); if let Err(why) = sender.send_json(&map) { warn!("Error sending keepalive: {:?}", why); |