Add message when no cache was found for a language

This commit is contained in:
Michael B. Gale 2024-10-07 11:25:44 +01:00
parent 8f657e857d
commit c0b5869910
No known key found for this signature in database
GPG key ID: FF5E2765BD00628F
3 changed files with 6 additions and 1 deletions

View file

@ -120,6 +120,8 @@ export async function downloadDependencyCaches(
if (hitKey !== undefined) {
logger.info(`Cache hit on key ${hitKey} for ${language}.`);
restoredCaches.push(language);
} else {
logger.info(`No suitable cache found for ${language}.`);
}
}