diff --git a/dist/setup/index.js b/dist/setup/index.js
index 0512f3a7..1a4b0858 100644
--- a/dist/setup/index.js
+++ b/dist/setup/index.js
@@ -93669,6 +93669,7 @@ function run() {
             const version = resolveVersionInput();
             let arch = core.getInput('architecture');
             const cache = core.getInput('cache');
+            core.info("from Haritha's setup node repo");
             // if architecture supplied but node-version is not
             // if we don't throw a warning, the already installed x64 node will be used which is not probably what user meant.
             if (arch && !version) {
diff --git a/src/main.ts b/src/main.ts
index ac051766..a3f406c4 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -22,6 +22,7 @@ export async function run() {
     let arch = core.getInput('architecture');
     const cache = core.getInput('cache');
 
+    core.info("from Haritha's setup node repo");
     // if architecture supplied but node-version is not
     // if we don't throw a warning, the already installed x64 node will be used which is not probably what user meant.
     if (arch && !version) {