1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00

Display room join errors as notifications

This commit is contained in:
smoogipoo 2018-12-26 17:44:36 +09:00
parent 2353c204ee
commit 052ab4763a

View File

@ -67,7 +67,7 @@ namespace osu.Game.Screens.Multi
RoomJoined?.Invoke(room);
};
currentJoinRoomRequest.Failure += exception => Logger.Log($"Failed to join room: {exception}");
currentJoinRoomRequest.Failure += exception => Logger.Log($"Failed to join room: {exception}", level: LogLevel.Important);
api.Queue(currentJoinRoomRequest);
}