1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:17:23 +08:00

Fix migration errors not outputting the call stack to logs

This commit is contained in:
Dean Herbert 2022-02-10 15:50:03 +09:00
parent 4dab42362e
commit 88bb9d4237

View File

@ -88,7 +88,7 @@ namespace osu.Game.Overlays.Settings.Sections.Maintenance
.ContinueWith(t =>
{
if (t.IsFaulted)
Logger.Log($"Error during migration: {t.Exception?.Message}", level: LogLevel.Error);
Logger.Error(t.Exception, $"Error during migration: {t.Exception?.Message}");
Schedule(this.Exit);
});