Skip to content

Commit 5f10e34

Browse files
Test debug message
1 parent 40e244d commit 5f10e34

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

dist/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -12344,6 +12344,7 @@ function acquireNode(version) {
1234412344
let downloadUrl = `https://nodejs.org/dist/v${version}/${urlFileName}`;
1234512345
let downloadPath;
1234612346
try {
12347+
core.info(`Downloading ${downloadUrl}`);
1234712348
downloadPath = yield tc.downloadTool(downloadUrl);
1234812349
}
1234912350
catch (err) {

src/installer.ts

+1
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ async function acquireNode(version: string): Promise<string> {
148148
let downloadPath: string;
149149

150150
try {
151+
core.info(`Downloading ${downloadUrl}`);
151152
downloadPath = await tc.downloadTool(downloadUrl);
152153
} catch (err) {
153154
if (err instanceof tc.HTTPError && err.httpStatusCode == 404) {

0 commit comments

Comments
 (0)