diff --git a/dist/setup/index.js b/dist/setup/index.js
index bac7fe81..278becce 100644
--- a/dist/setup/index.js
+++ b/dist/setup/index.js
@@ -100207,6 +100207,7 @@ class BaseDistribution {
                     this.osPlat == 'win32') {
                     return yield this.acquireWindowsNodeFromFallbackLocation(info.resolvedVersion, info.arch);
                 }
+                core.error(`Download failed from ${info.downloadUrl}. Please check the URl and try again.`);
                 throw err;
             }
             const toolPath = yield this.extractArchive(downloadPath, info, true);
diff --git a/src/distributions/base-distribution.ts b/src/distributions/base-distribution.ts
index ac13ccc7..f2fb1976 100644
--- a/src/distributions/base-distribution.ts
+++ b/src/distributions/base-distribution.ts
@@ -172,6 +172,7 @@ export default abstract class BaseDistribution {
           info.arch
         );
       }
+      core.error(`Download failed from ${info.downloadUrl}. Please check the URl and try again.`);
 
       throw err;
     }