Provide more feedback during list validation

This commit is contained in:
Halgari 2023-02-10 06:32:00 -07:00
parent 3587b188e0
commit dd9100ccf4

View File

@ -106,6 +106,12 @@ public class ValidateLists
var stopWatch = Stopwatch.StartNew();
var listData = await _wjClient.LoadLists();
_logger.LogInformation("Found {Count} lists", listData.Length);
foreach (var list in listData.OrderBy(d => d.NamespacedName))
{
_logger.LogInformation("Validating {MachineUrl} - {Version}", list.NamespacedName, list.Version);
}
var validatedLists = await listData.PMapAll(async modList =>
{
var validatedList = new ValidatedModList