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

Fix log output using incorrect name

This commit is contained in:
Dean Herbert 2023-09-19 17:34:24 +09:00
parent 7f30354e61
commit 0593c76c57

View File

@ -56,7 +56,7 @@ namespace osu.Game.Scoring
catch (LegacyScoreDecoder.BeatmapNotFoundException e)
{
onMissingBeatmap(e, archive, name);
Logger.Log($@"Score '{name}' failed to import: no corresponding beatmap with the hash '{e.Hash}' could be found.", LoggingTarget.Database);
Logger.Log($@"Score '{archive.Name}' failed to import: no corresponding beatmap with the hash '{e.Hash}' could be found.", LoggingTarget.Database);
return null;
}
}