1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 07:32:55 +08:00

mention that the event was the type

This commit is contained in:
David Zhao 2019-08-07 17:08:41 +09:00
parent 669c2462ec
commit 7bcec31ea3
2 changed files with 2 additions and 2 deletions

View File

@ -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($"Unknown beatmap event of type {split[0]} could not be parsed and will be ignored.", LoggingTarget.Runtime, LogLevel.Important);
return;
}

View File

@ -84,7 +84,7 @@ namespace osu.Game.Beatmaps.Formats
EventType type;
if (!Enum.TryParse(split[0], out type))
Logger.Log($"A storyboard {type} event could not be parsed and will be ignored: {split[0]}", LoggingTarget.Runtime, LogLevel.Important);
Logger.Log($"Unknown storyboard event of type {split[0]} could not be parsed and will be ignored.", LoggingTarget.Runtime, LogLevel.Important);
switch (type)
{