@@ -17,6 +17,7 @@ import type {
17
17
NetlifyIncrementalCacheValue ,
18
18
} from '../../shared/cache-types.cjs'
19
19
import { getRegionalBlobStore } from '../regional-blob-store.cjs'
20
+ import { logger } from '../systemlog.cjs'
20
21
21
22
import { getRequestContext } from './request-context.cjs'
22
23
import { getTracer } from './tracer.cjs'
@@ -108,7 +109,7 @@ export class NetlifyCacheHandler implements CacheHandler {
108
109
async get ( ...args : Parameters < CacheHandler [ 'get' ] > ) : ReturnType < CacheHandler [ 'get' ] > {
109
110
return this . tracer . withActiveSpan ( 'get cache key' , async ( span ) => {
110
111
const [ key , ctx = { } ] = args
111
- console . debug ( `[NetlifyCacheHandler.get]: ${ key } ` )
112
+ logger . debug ( `[NetlifyCacheHandler.get]: ${ key } ` )
112
113
113
114
const blobKey = await this . encodeBlobKey ( key )
114
115
span . setAttributes ( { key, blobKey } )
@@ -176,7 +177,7 @@ export class NetlifyCacheHandler implements CacheHandler {
176
177
const lastModified = Date . now ( )
177
178
span . setAttributes ( { key, lastModified, blobKey } )
178
179
179
- console . debug ( `[NetlifyCacheHandler.set]: ${ key } ` )
180
+ logger . debug ( `[NetlifyCacheHandler.set]: ${ key } ` )
180
181
181
182
const value : NetlifyIncrementalCacheValue | null =
182
183
data ?. kind === 'ROUTE'
@@ -197,10 +198,12 @@ export class NetlifyCacheHandler implements CacheHandler {
197
198
const requestContext = getRequestContext ( )
198
199
if ( requestContext ?. didPagesRouterOnDemandRevalidate ) {
199
200
const tag = `_N_T_${ key === '/index' ? '/' : key } `
200
- console . debug ( ' Purging CDN cache for:' , [ tag ] )
201
+ logger . debug ( ` Purging CDN cache for: [ ${ tag } ]` )
201
202
purgeCache ( { tags : [ tag ] } ) . catch ( ( error ) => {
202
203
// TODO: add reporting here
203
- console . error ( `[NetlifyCacheHandler]: Purging the cache for tag ${ tag } failed` , error )
204
+ logger
205
+ . withError ( error )
206
+ . error ( `[NetlifyCacheHandler]: Purging the cache for tag ${ tag } failed` )
204
207
} )
205
208
}
206
209
}
@@ -209,7 +212,7 @@ export class NetlifyCacheHandler implements CacheHandler {
209
212
210
213
// eslint-disable-next-line @typescript-eslint/no-explicit-any
211
214
async revalidateTag ( tagOrTags : string | string [ ] , ...args : any ) {
212
- console . debug ( 'NetlifyCacheHandler.revalidateTag' , tagOrTags , args )
215
+ logger . withFields ( { tagOrTags , args } ) . debug ( 'NetlifyCacheHandler.revalidateTag' )
213
216
214
217
const tags = Array . isArray ( tagOrTags ) ? tagOrTags : [ tagOrTags ]
215
218
@@ -222,17 +225,16 @@ export class NetlifyCacheHandler implements CacheHandler {
222
225
try {
223
226
await this . blobStore . setJSON ( await this . encodeBlobKey ( tag ) , data )
224
227
} catch ( error ) {
225
- console . warn ( `Failed to update tag manifest for ${ tag } ` , error )
228
+ logger . withError ( error ) . log ( `Failed to update tag manifest for ${ tag } ` )
226
229
}
227
230
} ) ,
228
231
)
229
232
230
233
purgeCache ( { tags } ) . catch ( ( error ) => {
231
234
// TODO: add reporting here
232
- console . error (
233
- `[NetlifyCacheHandler]: Purging the cache for tags ${ tags . join ( ', ' ) } failed` ,
234
- error ,
235
- )
235
+ logger
236
+ . withError ( error )
237
+ . error ( `[NetlifyCacheHandler]: Purging the cache for tags ${ tags . join ( ', ' ) } failed` )
236
238
} )
237
239
}
238
240
0 commit comments