1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 22:34:09 +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) catch (Exception e)
{ {
e = e.InnerException ?? e;
Logger.Error(e, $@"Could not import beatmap set"); Logger.Error(e, $@"Could not import beatmap set");
} }