1
0
Fork 0

Remove unnecessary debug information

pull/1857/head
Bassem Dghaidi 2024-11-14 04:39:30 -08:00 committed by GitHub
parent c3e354da23
commit ea4bf4810a
1 changed files with 0 additions and 5 deletions

View File

@ -253,12 +253,8 @@ async function restoreCachev2(
)
}
core.debug(
`GetCacheEntryDownloadURLRequest: ${JSON.stringify(twirpClient)}`
)
const response: GetCacheEntryDownloadURLResponse =
await twirpClient.GetCacheEntryDownloadURL(request)
core.debug(`GetCacheEntryDownloadURLResponse: ${JSON.stringify(response)}`)
if (!response.ok) {
core.warning(`Cache not found for keys: ${keys.join(', ')}`)
@ -277,7 +273,6 @@ async function restoreCachev2(
utils.getCacheFileName(compressionMethod)
)
core.debug(`Archive path: ${archivePath}`)
core.debug(`Starting download of artifact to: ${archivePath}`)
await DownloadCacheFile(response.signedDownloadUrl, archivePath)