Merge pull request #343 from erri120/no-match-reason

Compilers will include Reason when for no match in output
This commit is contained in:
Timothy Baldridge 2020-01-04 10:48:30 -08:00 committed by GitHub
commit de3c810b32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -232,7 +232,7 @@ namespace Wabbajack.Lib
if (nomatch.Any())
{
foreach (var file in nomatch)
Info($" {file.To}");
Info($" {file.To} - {file.Reason}");
if (IgnoreMissingFiles)
{
Info("Continuing even though files were missing at the request of the user.");

View File

@ -217,7 +217,7 @@ namespace Wabbajack.Lib
IEnumerable<NoMatch> noMatch = results.OfType<NoMatch>().ToList();
Info($"No match for {noMatch.Count()} files");
foreach (var file in noMatch)
Info($" {file.To}");
Info($" {file.To} - {file.Reason}");
if (noMatch.Any())
{
if (IgnoreMissingFiles)