From c5fa9fb0625ce3f3c2830244fd5ce73275483cd9 Mon Sep 17 00:00:00 2001 From: Tingluo Huang Date: Fri, 17 Apr 2020 11:53:51 -0400 Subject: [PATCH] Print node version in debug instead of output. (#433) --- src/Runner.Worker/Handlers/StepHost.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Runner.Worker/Handlers/StepHost.cs b/src/Runner.Worker/Handlers/StepHost.cs index 548a74f95..0907eaed2 100644 --- a/src/Runner.Worker/Handlers/StepHost.cs +++ b/src/Runner.Worker/Handlers/StepHost.cs @@ -149,14 +149,14 @@ namespace GitHub.Runner.Worker.Handlers throw new NotSupportedException(msg); } nodeExternal = "node12_alpine"; - executionContext.Output($"Container distribution is alpine. Running JavaScript Action with external tool: {nodeExternal}"); + executionContext.Debug($"Container distribution is alpine. Running JavaScript Action with external tool: {nodeExternal}"); return nodeExternal; } } } // Optimistically use the default nodeExternal = "node12"; - executionContext.Output($"Running JavaScript Action with default external tool: {nodeExternal}"); + executionContext.Debug($"Running JavaScript Action with default external tool: {nodeExternal}"); return nodeExternal; }