Skip to content

Commit c801b57

Browse files
committed
debug genSingleLayerStoreKey
1 parent 129e6a1 commit c801b57

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/LayerCache.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,9 @@ class LayerCache {
227227
}
228228

229229
genSingleLayerStoreKey(id: string) {
230-
return `layer-${this.getFormattedOriginalCacheKey(id)}`
230+
const singleLayerStoreKey = this.getFormattedOriginalCacheKey(id)
231+
core.debug(JSON.stringify({ log: `genSingleLayerStoreKey`, singleLayerStoreKey, id }))
232+
return `layer-${singleLayerStoreKey}`
231233
}
232234

233235
getFormattedOriginalCacheKey(hash?: string) {

0 commit comments

Comments
 (0)