From 0dc69b3a7158ac7aa34c525d3a29cf7fa7d43a5e Mon Sep 17 00:00:00 2001
From: Josh Gross <joshmgross@github.com>
Date: Thu, 16 Apr 2020 10:56:07 -0400
Subject: [PATCH] Remove extra version logging

---
 dist/index.js     | 1 -
 src/setup-node.ts | 1 -
 2 files changed, 2 deletions(-)

diff --git a/dist/index.js b/dist/index.js
index 405263d4..6cbd395d 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -15224,7 +15224,6 @@ function run() {
                 yield installer.getNode(version);
             }
             // Output version of node and npm that are being used
-            console.log(`Installed Node version '${version}.`);
             const nodePath = yield io.which('node');
             const nodeVersion = child_process_1.default.execSync(`${nodePath} --version`);
             console.log(`Node Version: ${nodeVersion}`);
diff --git a/src/setup-node.ts b/src/setup-node.ts
index a31a7a7a..28c106eb 100644
--- a/src/setup-node.ts
+++ b/src/setup-node.ts
@@ -20,7 +20,6 @@ async function run() {
     }
 
     // Output version of node and npm that are being used
-    console.log(`Installed Node version '${version}.`);
     const nodePath = await io.which('node');
     const nodeVersion = cp.execSync(`${nodePath} --version`);
     console.log(`Node Version: ${nodeVersion}`);