removed some debugging

This commit is contained in:
mahabaleshwars 2024-09-25 17:31:29 +05:30
parent d148396753
commit ba50e5ed8e
2 changed files with 0 additions and 6 deletions

3
dist/setup/index.js vendored
View file

@ -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) {

View file

@ -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);