Skip to content

Commit c35a48c

Browse files
committed
Add message when no cache was found for a language
1 parent 6fc5894 commit c35a48c

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

lib/dependency-caching.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/dependency-caching.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/dependency-caching.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ export async function downloadDependencyCaches(
120120
if (hitKey !== undefined) {
121121
logger.info(`Cache hit on key ${hitKey} for ${language}.`);
122122
restoredCaches.push(language);
123+
} else {
124+
logger.info(`No suitable cache found for ${language}.`);
123125
}
124126
}
125127

0 commit comments

Comments
 (0)