diff --git a/dist/restore/index.js b/dist/restore/index.js
index 710969c..3a03c9a 100644
--- a/dist/restore/index.js
+++ b/dist/restore/index.js
@@ -48993,6 +48993,7 @@ function run() {
                 core.saveState(constants_1.State.SaveCache, saveCache);
                 core.info(`Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.`);
                 core.info(core.getState(constants_1.State.SaveCache));
+                core.info(core.getState(constants_1.State.CachePrimaryKey));
             }
             if (!cacheKey) {
                 if (core.getInput(constants_1.Inputs.StrictRestore) == "true") {
diff --git a/src/restore.ts b/src/restore.ts
index ad2ef52..3673ace 100644
--- a/src/restore.ts
+++ b/src/restore.ts
@@ -43,6 +43,7 @@ async function run(): Promise<void> {
                 `Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.`
             );
             core.info(core.getState(State.SaveCache));
+            core.info(core.getState(State.CachePrimaryKey));
         }
 
         if (!cacheKey) {