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:
parent
15a592e25e
commit
b8ccba02f2
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user