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 129e6a1 commit c801b57Copy full SHA for c801b57
src/LayerCache.ts
@@ -227,7 +227,9 @@ class LayerCache {
227
}
228
229
genSingleLayerStoreKey(id: string) {
230
- return `layer-${this.getFormattedOriginalCacheKey(id)}`
+ const singleLayerStoreKey = this.getFormattedOriginalCacheKey(id)
231
+ core.debug(JSON.stringify({ log: `genSingleLayerStoreKey`, singleLayerStoreKey, id }))
232
+ return `layer-${singleLayerStoreKey}`
233
234
235
getFormattedOriginalCacheKey(hash?: string) {
0 commit comments