Add logging to errors

This commit is contained in:
Joanna Krzek-Lubowiecka
2023-06-13 07:02:16 +00:00
committed by GitHub
parent efffbaeabc
commit 4c777889ae
3 changed files with 4 additions and 4 deletions

View File

@@ -287,7 +287,7 @@ namespace GitHub.DistributedTask.ObjectTemplating
{
if (!keys.Contains(property.Key))
{
m_context.Error(mapping, $"Required property is missing: {property.Key}");
m_context.Error(mapping, "Template evaluator error " + $"Required property is missing: {property.Key}");
}
}
}