From 5f10e344c2f151b923e613691201bb9f30f5de05 Mon Sep 17 00:00:00 2001 From: AlyonaSviridenko Date: Tue, 3 Aug 2021 19:16:44 +0300 Subject: [PATCH] Test debug message --- dist/index.js | 1 + src/installer.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/index.js b/dist/index.js index 69c25561..333a1f6e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -12344,6 +12344,7 @@ function acquireNode(version) { let downloadUrl = `https://nodejs.org/dist/v${version}/${urlFileName}`; let downloadPath; try { + core.info(`Downloading ${downloadUrl}`); downloadPath = yield tc.downloadTool(downloadUrl); } catch (err) { diff --git a/src/installer.ts b/src/installer.ts index 6267e0c8..44618410 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -148,6 +148,7 @@ async function acquireNode(version: string): Promise { let downloadPath: string; try { + core.info(`Downloading ${downloadUrl}`); downloadPath = await tc.downloadTool(downloadUrl); } catch (err) { if (err instanceof tc.HTTPError && err.httpStatusCode == 404) {