Skip to content

Commit

Permalink
Revert "Dont log error twice in ExecutionContext on template error (a…
Browse files Browse the repository at this point in the history
…ctions#2634)"

This reverts commit 48cbee0.
  • Loading branch information
JoannaaKL authored Jun 1, 2023
1 parent 58f7a37 commit 50b3edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Runner.Worker/ExecutionContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ internal TemplateTraceWriter(IExecutionContext executionContext)

public void Error(string format, params Object[] args)
{
_executionContext.Debug(string.Format(CultureInfo.CurrentCulture, format, args));
_executionContext.Error(string.Format(CultureInfo.CurrentCulture, format, args));
}

public void Info(string format, params Object[] args)
Expand Down

0 comments on commit 50b3edf

Please sign in to comment.