mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Provide more feedback during list validation
This commit is contained in:
parent
3587b188e0
commit
dd9100ccf4
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user