File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -172,14 +172,15 @@ class LayerCache {
172172 }
173173
174174 private async restoreLayers ( ) {
175- const restoring = ( await this . getLayerIds ( ) ) . map ( layerId => this . restoreSingleLayerBy ( layerId ) )
175+ const restoring = ( await this . getLayerIds ( ) ) . map ( layerId => this . restoreSingleLayerBy ( layerId ) ) ;
176176 const restoredLayerKeysThatMayContainUndefined = await Promise . all ( restoring )
177- core . debug ( JSON . stringify ( { restoredLayerKeysThatMayContainUndefined } ) )
177+ core . debug ( JSON . stringify ( { log : `restoreLayers` , restoredLayerKeysThatMayContainUndefined } ) )
178178 const FailedToRestore = ( restored : string | undefined ) => restored === undefined
179179 return restoredLayerKeysThatMayContainUndefined . filter ( FailedToRestore ) . length === 0
180180 }
181181
182182 private async restoreSingleLayerBy ( id : string ) : Promise < string | undefined > {
183+ core . debug ( JSON . stringify ( { log : `restoreSingleLayerBy` , id } ) )
183184 return await cache . restoreCache ( [ this . genSingleLayerStorePath ( id ) ] , this . genSingleLayerStoreKey ( id ) )
184185 }
185186
You can’t perform that action at this time.
0 commit comments