Lowered latency updates to debug level

This commit is contained in:
RogueException
2017-04-01 11:42:19 -03:00
parent ce2b5da6de
commit 27d6f4159d
2 changed files with 2 additions and 2 deletions

View File

@@ -111,7 +111,7 @@ namespace Discord.Audio
e.ErrorContext.Handled = true;
};
LatencyUpdated += async (old, val) => await _audioLogger.VerboseAsync($"Latency = {val} ms").ConfigureAwait(false);
LatencyUpdated += async (old, val) => await _audioLogger.DebugAsync($"Latency = {val} ms").ConfigureAwait(false);
}
internal async Task StartAsync(string url, ulong userId, string sessionId, string token)