Filter out a non-issue warning.

This commit is contained in:
TheUbMunster 2022-12-24 20:15:34 -07:00
parent 28c4cfadd6
commit 3f6d581c83
1 changed files with 8 additions and 4 deletions

View File

@ -72,10 +72,14 @@ public class DiscordBot
{ {
//as time goes on, we may encounter logged info that we literally don't care about. Fill out an if statement to properly //as time goes on, we may encounter logged info that we literally don't care about. Fill out an if statement to properly
//filter it out to avoid logging it to discord. //filter it out to avoid logging it to discord.
//if (a.Message.StartsWith("")) if (a.Message.Contains("Server requested a reconnect"))
//{ {
// return; //This is to filter out this message. This warning is for discord server load balancing and isn't a problem
//}
//Warning[Discord: Gateway] Discord.WebSocket.GatewayReconnectException: Server requested a reconnect
//Warning[Discord: Gateway] at Discord.ConnectionManager.<> c__DisplayClass29_0.<< StartAsync > b__0 > d.MoveNext()
return;
}
string message = a.Message + (a.Exception != null ? "Exception: " + a.Exception.ToString() : ""); string message = a.Message + (a.Exception != null ? "Exception: " + a.Exception.ToString() : "");
ConsoleColor col; ConsoleColor col;
switch (a.Severity) switch (a.Severity)