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

Ensure correct exception logged

This commit is contained in:
Mikal Stodal 2017-03-02 14:10:32 +01:00
parent 2498305174
commit dfa21444b4

View File

@ -143,6 +143,7 @@ namespace osu.Game.Database
}
catch (Exception e)
{
e = e.InnerException ?? e;
Logger.Error(e, $@"Could not import beatmap set");
}