1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 01:00:27 +08:00

log type as well

This commit is contained in:
David Zhao
2019-08-06 12:27:10 +09:00
Unverified
parent 2c32d886d7
commit 66b02c0283
2 changed files with 2 additions and 2 deletions
@@ -293,7 +293,7 @@ namespace osu.Game.Beatmaps.Formats
if (!Enum.TryParse(split[0], out type))
{
Logger.Log($"A beatmap event could not be parsed and will be ignored: {split[0]}", LoggingTarget.Runtime, LogLevel.Important);
Logger.Log($"A beatmap {type} event could not be parsed and will be ignored: {split[0]}", LoggingTarget.Runtime, LogLevel.Important);
return;
}
@@ -84,7 +84,7 @@ namespace osu.Game.Beatmaps.Formats
EventType type;
if (!Enum.TryParse(split[0], out type))
Logger.Log($"A storyboard event could not be parsed and will be ignored: {split[0]}", LoggingTarget.Runtime, LogLevel.Important);
Logger.Log($"A storyboard {type} event could not be parsed and will be ignored: {split[0]}", LoggingTarget.Runtime, LogLevel.Important);
switch (type)
{