1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-31 04:32:57 +08:00

Hide Discord RPC error messages away from user attention

This commit is contained in:
Salman Alshamrani 2025-01-23 21:22:35 -05:00 committed by Dean Herbert
parent 5e607c94b1
commit ea9cc4d44d
No known key found for this signature in database

View File

@ -82,7 +82,7 @@ namespace osu.Desktop
};
client.OnReady += onReady;
client.OnError += (_, e) => Logger.Log($"An error occurred with Discord RPC Client: {e.Message} ({e.Code})", LoggingTarget.Network, LogLevel.Error);
client.OnError += (_, e) => Logger.Log($"An error occurred with Discord RPC Client: {e.Message} ({e.Code})", LoggingTarget.Network);
try
{