Report cache entry path for duplicate entry save

This commit is contained in:
Daz DeBoer 2022-06-06 08:48:03 -06:00
parent 63bcd47c1b
commit 9cd70b5460
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D

View file

@ -162,7 +162,7 @@ export async function saveCache(cachePath: string[], cacheKey: string, listener:
if (error instanceof cache.ReserveCacheError) { if (error instanceof cache.ReserveCacheError) {
listener.markAlreadyExists(cacheKey) listener.markAlreadyExists(cacheKey)
} }
handleCacheFailure(error, `Failed to save cache entry ${cacheKey}`) handleCacheFailure(error, `Failed to save cache entry with path '${cachePath}' and key: ${cacheKey}`)
} }
} }