1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 15:43:22 +08:00

Fix custom exception stack trace output

This commit is contained in:
Dean Herbert 2018-08-16 20:41:53 +09:00
parent b26c8e3b9e
commit dfecb3235b

View File

@ -88,6 +88,7 @@ namespace osu.Game.Rulesets.Mania.Beatmaps.Patterns
}
public override string StackTrace => stackTrace;
public override string ToString() => $"{GetType().Name}: {Message}\r\n{StackTrace}";
}
}
}