From ba50e5ed8e378cb404d8e353781670475936689f Mon Sep 17 00:00:00 2001 From: mahabaleshwars <147705296+mahabaleshwars@users.noreply.github.com> Date: Wed, 25 Sep 2024 17:31:29 +0530 Subject: [PATCH] removed some debugging --- dist/setup/index.js | 3 --- src/install-python.ts | 3 --- 2 files changed, 6 deletions(-) diff --git a/dist/setup/index.js b/dist/setup/index.js index 4ec6e45..35524b2 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -91639,7 +91639,6 @@ function findReleaseFromManifest(semanticVersionSpec, architecture, manifest) { manifest = yield getManifest(); } const foundRelease = yield tc.findFromManifest(semanticVersionSpec, false, manifest, architecture); - core.info(`Found release: ${JSON.stringify(foundRelease)}`); return foundRelease; }); } @@ -91649,7 +91648,6 @@ function getManifest() { try { const manifestFromRepo = yield getManifestFromRepo(); core.info('Successfully fetched the manifest from the repo.'); - core.info(`Manifest from repo: ${JSON.stringify(manifestFromRepo)}`); validateManifest(manifestFromRepo); return manifestFromRepo; } @@ -91659,7 +91657,6 @@ function getManifest() { try { const manifestFromURL = yield getManifestFromURL(); core.info('Successfully fetched the manifest from the URL.'); - core.info(`Manifest from URL: ${JSON.stringify(manifestFromURL)}`); return manifestFromURL; } catch (err) { diff --git a/src/install-python.ts b/src/install-python.ts index ff8493d..c40604f 100644 --- a/src/install-python.ts +++ b/src/install-python.ts @@ -28,7 +28,6 @@ export async function findReleaseFromManifest( manifest, architecture ); - core.info(`Found release: ${JSON.stringify(foundRelease)}`); return foundRelease; } @@ -36,7 +35,6 @@ export async function getManifest(): Promise { try { const manifestFromRepo = await getManifestFromRepo(); core.info('Successfully fetched the manifest from the repo.'); - core.info(`Manifest from repo: ${JSON.stringify(manifestFromRepo)}`); validateManifest(manifestFromRepo); return manifestFromRepo; } catch (err) { @@ -45,7 +43,6 @@ export async function getManifest(): Promise { try { const manifestFromURL = await getManifestFromURL(); core.info('Successfully fetched the manifest from the URL.'); - core.info(`Manifest from URL: ${JSON.stringify(manifestFromURL)}`); return manifestFromURL; } catch (err) { logError('Fetching the manifest via the URL failed.', err);