From 493b8396307a2549de5cb47a6ca652e3d5fde393 Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Fri, 28 Feb 2020 09:09:06 -0500 Subject: [PATCH] Remove output log --- dist/index.js | 1 - src/main.ts | 2 -- 2 files changed, 3 deletions(-) diff --git a/dist/index.js b/dist/index.js index 2719b53..68a5dc5 100644 --- a/dist/index.js +++ b/dist/index.js @@ -9192,7 +9192,6 @@ async function main() { default: throw new Error('"result-encoding" must be either "string" or "json"'); } - console.log('setting output', output); Object(core.setOutput)('result', output); } function handleError(err) { diff --git a/src/main.ts b/src/main.ts index f5b752e..89bf9e4 100644 --- a/src/main.ts +++ b/src/main.ts @@ -39,8 +39,6 @@ async function main() { throw new Error('"result-encoding" must be either "string" or "json"') } - console.log('setting output', output) - core.setOutput('result', output) }