diff --git a/dist/setup/index.js b/dist/setup/index.js
index 4ec6e453..35524b27 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 ff8493dd..c40604f8 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<tc.IToolRelease[]> {
   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<tc.IToolRelease[]> {
   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);