Dont log error twice in ExecutionContext on template error (#2634)

This commit is contained in:
JoannaaKL
2023-05-31 16:33:36 +02:00
committed by GitHub
parent 21b49c542c
commit 48cbee08f9

View File

@@ -1401,7 +1401,7 @@ namespace GitHub.Runner.Worker
public void Error(string format, params Object[] args)
{
_executionContext.Error(string.Format(CultureInfo.CurrentCulture, format, args));
_executionContext.Debug(string.Format(CultureInfo.CurrentCulture, format, args));
}
public void Info(string format, params Object[] args)