diff --git a/dist/index.js b/dist/index.js index bad8d0a..8d015a9 100644 --- a/dist/index.js +++ b/dist/index.js @@ -4582,9 +4582,6 @@ function downloadGo(versionSpec, stable) { let toolPath; try { let match = yield findMatch(versionSpec, stable); - if (match) { - console.log('match', match.version); - } if (match) { // download core_1.debug(`match ${match.version}`); @@ -4622,7 +4619,6 @@ function findMatch(versionSpec, stable) { let goFile; for (let i = 0; i < candidates.length; i++) { let candidate = candidates[i]; - console.log(JSON.stringify(candidate, null, 2)); let version = candidate.version.replace('go', ''); // 1.13.0 is advertised as 1.13 preventing being able to match exactly 1.13.0 // since a semver of 1.13 would match latest 1.13 diff --git a/src/installer.ts b/src/installer.ts index a3bcb57..67173ca 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -13,9 +13,6 @@ export async function downloadGo( try { let match: IGoVersion | undefined = await findMatch(versionSpec, stable); - if (match) { - console.log('match', match.version); - } if (match) { // download @@ -74,7 +71,6 @@ export async function findMatch( let goFile: IGoVersionFile | undefined; for (let i = 0; i < candidates.length; i++) { let candidate: IGoVersion = candidates[i]; - console.log(JSON.stringify(candidate, null, 2)); let version = candidate.version.replace('go', ''); // 1.13.0 is advertised as 1.13 preventing being able to match exactly 1.13.0