diff options
| author | Austin Hellyer <[email protected]> | 2016-12-31 11:13:11 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-12-31 11:13:11 -0800 |
| commit | fb0c08fbf7a2a9247901b889c6e92a1763777a44 (patch) | |
| tree | c8d46de077248f0f39b34132b130b2b63f59f720 /src | |
| parent | Remove GitLab CI config (diff) | |
| download | serenity-fb0c08fbf7a2a9247901b889c6e92a1763777a44.tar.xz serenity-fb0c08fbf7a2a9247901b889c6e92a1763777a44.zip | |
Convert heartbeat debug to a trace
Diffstat (limited to 'src')
| -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); |