mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Don't log cancelled join requests
This commit is contained in:
@ -98,7 +98,8 @@ namespace osu.Game.Screens.Multi
|
||||
|
||||
currentJoinRoomRequest.Failure += exception =>
|
||||
{
|
||||
Logger.Log($"Failed to join room: {exception}", level: LogLevel.Important);
|
||||
if (!(exception is OperationCanceledException))
|
||||
Logger.Log($"Failed to join room: {exception}", level: LogLevel.Important);
|
||||
onError?.Invoke(exception.ToString());
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user