Skip to content

Commit

Permalink
Merge pull request ppy#31640 from frenzibyte/discord-rpc-ux
Browse files Browse the repository at this point in the history
Hide Discord RPC error messages away from user attention
  • Loading branch information
peppy authored Jan 24, 2025
2 parents c326901 + 61a818e commit 4ae6dfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Desktop/DiscordRichPresence.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private void load(OsuConfigManager config, SessionStatics session)
};

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
{
Expand Down

0 comments on commit 4ae6dfd

Please sign in to comment.