1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-18 06:27:18 +08:00

Log to runtime instead

This commit is contained in:
David Zhao 2019-08-07 19:33:54 +09:00
parent 15a592e25e
commit b8ccba02f2

View File

@ -43,7 +43,14 @@ namespace osu.Game.Beatmaps.Formats
continue;
}
ParseLine(output, section, line);
try
{
ParseLine(output, section, line);
}
catch (Exception e)
{
Logger.Log($"Failed to process line \"{line}\" into {output}", LoggingTarget.Runtime, LogLevel.Important);
}
}
}