Skip to content

Commit

Permalink
Merge pull request #9 from sharwell/error-message
Browse files Browse the repository at this point in the history
Include assembly name in error messages
  • Loading branch information
sharwell authored Sep 4, 2019
2 parents 348434a + 9b0fdcd commit 7993c44
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ public override bool Execute()

if (unannotatedReferenceAssembly is null)
{
Log.LogError("Could not find input reference assembly");
Log.LogError($"Could not find input reference assembly '{UnannotatedReferenceAssembly}'");
return false;
}

if (!foundAnnotatedAssembly)
{
Log.LogError("Could not find input annotated reference assembly");
Log.LogError($"Could not find input annotated reference assembly for '{UnannotatedReferenceAssembly}'");
return false;
}

Expand Down

0 comments on commit 7993c44

Please sign in to comment.