Merge pull request #1994 from gitulisca-enterprise-cloud-testing/gitulisca/log-restore-request-version

Log cache version requested on debugging message
This commit is contained in:
JoannaaKL
2025-03-17 17:58:16 +01:00
committed by GitHub
2 changed files with 13 additions and 2 deletions

View File

@@ -256,7 +256,11 @@ async function restoreCacheV2(
const response = await twirpClient.GetCacheEntryDownloadURL(request)
if (!response.ok) {
core.debug(`Cache not found for keys: ${keys.join(', ')}`)
core.debug(
`Cache not found for version ${request.version} of keys: ${keys.join(
', '
)}`
)
return undefined
}