Removed a couple of debug logs

This commit is contained in:
RogueException
2016-06-21 12:24:48 -03:00
parent 97078b557a
commit a1594d55b3

View File

@@ -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