From 76d01120a3720f8c2bbb1e6ec9938b688059a077 Mon Sep 17 00:00:00 2001 From: Joanna Krzek-Lubowiecka Date: Tue, 13 Jun 2023 07:17:20 +0000 Subject: [PATCH] Even more logs lol --- src/Runner.Worker/ExecutionContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runner.Worker/ExecutionContext.cs b/src/Runner.Worker/ExecutionContext.cs index c2a3ad2f7..5f2e44235 100644 --- a/src/Runner.Worker/ExecutionContext.cs +++ b/src/Runner.Worker/ExecutionContext.cs @@ -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.Error("error from template trace writer: " + string.Format(CultureInfo.CurrentCulture, format, args)); } public void Info(string format, params Object[] args)