Remove overly verbose logging during beatmap imports

This commit is contained in:
Dean Herbert 2021-06-27 13:06:47 +09:00
parent d1f852d102
commit 46f8100f43
2 changed files with 0 additions and 3 deletions

View File

@ -191,8 +191,6 @@ private void validateOnlineIds(BeatmapSetInfo beatmapSet)
{
var beatmapIds = beatmapSet.Beatmaps.Where(b => b.OnlineBeatmapID.HasValue).Select(b => b.OnlineBeatmapID).ToList();
LogForModel(beatmapSet, $"Validating online IDs for {beatmapSet.Beatmaps.Count} beatmaps...");
// ensure all IDs are unique
if (beatmapIds.GroupBy(b => b).Any(g => g.Count() > 1))
{

View File

@ -48,7 +48,6 @@ public BeatmapOnlineLookupQueue(IAPIProvider api, Storage storage)
public Task UpdateAsync(BeatmapSetInfo beatmapSet, CancellationToken cancellationToken)
{
LogForModel(beatmapSet, "Performing online lookups...");
return Task.WhenAll(beatmapSet.Beatmaps.Select(b => UpdateAsync(beatmapSet, b, cancellationToken)).ToArray());
}