From 4d246d010b022c02afc4f4af35fe1901983a6518 Mon Sep 17 00:00:00 2001
From: Aparna Jyothi <aparnajyothi-y@github.com>
Date: Fri, 31 Jan 2025 20:20:55 +0530
Subject: [PATCH] print

---
 dist/setup/index.js                         | 1 -
 src/distributions/nightly/nightly_builds.ts | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/dist/setup/index.js b/dist/setup/index.js
index b42c3c50..830ef8c9 100644
--- a/dist/setup/index.js
+++ b/dist/setup/index.js
@@ -100457,7 +100457,6 @@ class NightlyNodejs extends base_distribution_prerelease_1.default {
         // Check if mirrorUrl exists in the nodeInfo and return it if available
         const mirrorUrl = this.nodeInfo.mirrorURL;
         if (mirrorUrl) {
-            core.info(`Downloding Using mirror URL: ${mirrorUrl}`);
             return mirrorUrl;
         }
         // Default to the official Node.js nightly distribution URL if no mirror URL is provided
diff --git a/src/distributions/nightly/nightly_builds.ts b/src/distributions/nightly/nightly_builds.ts
index 4bc12c9e..3ee3eea8 100644
--- a/src/distributions/nightly/nightly_builds.ts
+++ b/src/distributions/nightly/nightly_builds.ts
@@ -20,7 +20,7 @@ export default class NightlyNodejs extends BasePrereleaseNodejs {
     // Check if mirrorUrl exists in the nodeInfo and return it if available
     const mirrorUrl = this.nodeInfo.mirrorURL;
     if (mirrorUrl) {
-      core.info(`Downloding Using mirror URL: ${mirrorUrl}`);
+      
       return mirrorUrl;
     }