We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98b9e90 commit c725427Copy full SHA for c725427
src/LayerCache.ts
@@ -161,7 +161,7 @@ class LayerCache {
161
}
162
163
private async restoreRoot(restoreKeys?: string[]): Promise<string | undefined> {
164
- core.debug(`Trying to restore root cache, ID: ${this.getRootKey()}, dir: ${this.getUnpackedTarDir()}`)
+ core.debug(`Trying to restore root cache: ${ JSON.stringify({ primaryKey: this.getRootKey(), restoreKeys, dir: this.getUnpackedTarDir() }) }`)
165
const restoredCacheKeyMayUndefined = await cache.restoreCache([this.getUnpackedTarDir()], this.getRootKey(), restoreKeys)
166
core.debug(`restoredCacheKeyMayUndefined: ${restoredCacheKeyMayUndefined}`)
167
if (restoredCacheKeyMayUndefined === undefined) {
0 commit comments