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
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public ScoreImporter(RulesetStore rulesets, Func<BeatmapManager> beatmaps, Stora
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;
}
}