1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 19:52:55 +08:00

Show original error message on web exceptions (or is no message is returned)

This commit is contained in:
Dean Herbert 2021-02-03 22:00:16 +09:00
parent fc3adaf612
commit 3fe190cfbe

View File

@ -4,6 +4,7 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
using System.Linq; using System.Linq;
using System.Net;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using osu.Framework.Allocation; using osu.Framework.Allocation;
@ -65,7 +66,10 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
{ {
failed = true; failed = true;
Logger.Log($"You are not able to submit a score: {e.Message}", LoggingTarget.Information, LogLevel.Important); if (e is WebException || string.IsNullOrEmpty(e.Message))
Logger.Error(e, "Failed to retrieve a score submission token.\n\nThis may happen if you are running an old or non-official release of osu! (ie. you are self-compiling).");
else
Logger.Log($"You are not able to submit a score: {e.Message}", level: LogLevel.Important);
Schedule(() => Schedule(() =>
{ {