Merge pull request #18435 from peppy/silence-parse-failures

Don't output beatmap parse failures in a visible manner
This commit is contained in:
Dan Balasescu 2022-05-27 19:42:18 +09:00 committed by GitHub
commit 5657cb757d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ namespace osu.Game.Beatmaps.Formats
}
catch (Exception e)
{
Logger.Log($"Failed to process line \"{line}\" into \"{output}\": {e.Message}", LoggingTarget.Runtime, LogLevel.Important);
Logger.Log($"Failed to process line \"{line}\" into \"{output}\": {e.Message}");
}
}
}