From a1594d55b38d161c8594ae782658073ec61df088 Mon Sep 17 00:00:00 2001 From: RogueException Date: Tue, 21 Jun 2016 12:24:48 -0300 Subject: [PATCH] Removed a couple of debug logs --- src/Discord.Net/DiscordSocketClient.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Discord.Net/DiscordSocketClient.cs b/src/Discord.Net/DiscordSocketClient.cs index a2117a846..95f943d09 100644 --- a/src/Discord.Net/DiscordSocketClient.cs +++ b/src/Discord.Net/DiscordSocketClient.cs @@ -235,7 +235,6 @@ namespace Discord private async Task StartReconnectAsync() { //TODO: Is this thread-safe? - await _log.InfoAsync("Debug", "Trying to reconnect...").ConfigureAwait(false); if (_reconnectTask != null) return; await _connectionLock.WaitAsync().ConfigureAwait(false); @@ -249,7 +248,6 @@ namespace Discord } private async Task ReconnectInternalAsync() { - await _log.InfoAsync("Debug", "Reconnecting...").ConfigureAwait(false); try { int nextReconnectDelay = 1000; @@ -1138,6 +1136,7 @@ namespace Discord } #endif } + private async Task RunHeartbeatAsync(int intervalMillis, CancellationToken cancelToken) { try