Skip to content

Commit b352d96

Browse files
authored
fix: leverage system logger for debug logs (instead of console) (#467)
* chore: move systemlog to a cts file * fix: leverage system logger in place of console
1 parent 5aaae2b commit b352d96

File tree

5 files changed

+22
-17
lines changed

5 files changed

+22
-17
lines changed

src/build/content/server.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
import { existsSync } from 'node:fs'
22
import {
3+
access,
34
cp,
45
mkdir,
56
readFile,
67
readdir,
78
readlink,
89
symlink,
910
writeFile,
10-
access,
1111
} from 'node:fs/promises'
1212
import { createRequire } from 'node:module'
1313
// eslint-disable-next-line no-restricted-imports
1414
import { dirname, join, resolve, sep } from 'node:path'
15-
import { sep as posixSep, join as posixJoin } from 'node:path/posix'
15+
import { join as posixJoin, sep as posixSep } from 'node:path/posix'
1616

1717
import { trace } from '@opentelemetry/api'
1818
import { wrapTracer } from '@opentelemetry/api/experimental'
1919
import glob from 'fast-glob'
2020
import { prerelease, lt as semverLowerThan, lte as semverLowerThanOrEqual } from 'semver'
2121

2222
import { RUN_CONFIG } from '../../run/constants.js'
23+
import { logger } from '../../run/systemlog.cjs'
2324
import { PluginContext } from '../plugin-context.js'
2425
import { verifyNextVersion } from '../verification.js'
2526

@@ -342,7 +343,7 @@ export const writeTagsManifest = async (ctx: PluginContext): Promise<void> => {
342343
} catch {
343344
// Parallel route default layout has no prerendered page, so don't warn about it
344345
if (!definition.dataRoute?.endsWith('/default.rsc')) {
345-
console.log(`Unable to read cache tags for: ${path}`)
346+
logger.log(`Unable to read cache tags for: ${path}`)
346347
}
347348
}
348349
}

src/run/handlers/cache.cts

+12-10
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import type {
1717
NetlifyIncrementalCacheValue,
1818
} from '../../shared/cache-types.cjs'
1919
import { getRegionalBlobStore } from '../regional-blob-store.cjs'
20+
import { logger } from '../systemlog.cjs'
2021

2122
import { getRequestContext } from './request-context.cjs'
2223
import { getTracer } from './tracer.cjs'
@@ -108,7 +109,7 @@ export class NetlifyCacheHandler implements CacheHandler {
108109
async get(...args: Parameters<CacheHandler['get']>): ReturnType<CacheHandler['get']> {
109110
return this.tracer.withActiveSpan('get cache key', async (span) => {
110111
const [key, ctx = {}] = args
111-
console.debug(`[NetlifyCacheHandler.get]: ${key}`)
112+
logger.debug(`[NetlifyCacheHandler.get]: ${key}`)
112113

113114
const blobKey = await this.encodeBlobKey(key)
114115
span.setAttributes({ key, blobKey })
@@ -176,7 +177,7 @@ export class NetlifyCacheHandler implements CacheHandler {
176177
const lastModified = Date.now()
177178
span.setAttributes({ key, lastModified, blobKey })
178179

179-
console.debug(`[NetlifyCacheHandler.set]: ${key}`)
180+
logger.debug(`[NetlifyCacheHandler.set]: ${key}`)
180181

181182
const value: NetlifyIncrementalCacheValue | null =
182183
data?.kind === 'ROUTE'
@@ -197,10 +198,12 @@ export class NetlifyCacheHandler implements CacheHandler {
197198
const requestContext = getRequestContext()
198199
if (requestContext?.didPagesRouterOnDemandRevalidate) {
199200
const tag = `_N_T_${key === '/index' ? '/' : key}`
200-
console.debug('Purging CDN cache for:', [tag])
201+
logger.debug(`Purging CDN cache for: [${tag}]`)
201202
purgeCache({ tags: [tag] }).catch((error) => {
202203
// 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`)
204207
})
205208
}
206209
}
@@ -209,7 +212,7 @@ export class NetlifyCacheHandler implements CacheHandler {
209212

210213
// eslint-disable-next-line @typescript-eslint/no-explicit-any
211214
async revalidateTag(tagOrTags: string | string[], ...args: any) {
212-
console.debug('NetlifyCacheHandler.revalidateTag', tagOrTags, args)
215+
logger.withFields({ tagOrTags, args }).debug('NetlifyCacheHandler.revalidateTag')
213216

214217
const tags = Array.isArray(tagOrTags) ? tagOrTags : [tagOrTags]
215218

@@ -222,17 +225,16 @@ export class NetlifyCacheHandler implements CacheHandler {
222225
try {
223226
await this.blobStore.setJSON(await this.encodeBlobKey(tag), data)
224227
} 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}`)
226229
}
227230
}),
228231
)
229232

230233
purgeCache({ tags }).catch((error) => {
231234
// 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`)
236238
})
237239
}
238240

src/run/handlers/server.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
import type { OutgoingHttpHeaders } from 'http'
22

3-
import { toComputeResponse, toReqRes, ComputeJsOutgoingMessage } from '@fastly/http-compute-js'
3+
import { ComputeJsOutgoingMessage, toComputeResponse, toReqRes } from '@fastly/http-compute-js'
44
import { Context } from '@netlify/functions'
55
import type { NextConfigComplete } from 'next/dist/server/config-shared.js'
66
import type { WorkerRequestHandler } from 'next/dist/server/lib/types.js'
77

88
import { TagsManifest, getTagsManifest } from '../config.js'
99
import {
1010
adjustDateHeader,
11-
setCacheStatusHeader,
1211
setCacheControlHeaders,
12+
setCacheStatusHeader,
1313
setCacheTagsHeaders,
1414
setVaryHeaders,
1515
} from '../headers.js'
1616
import { nextResponseProxy } from '../revalidate.js'
17-
import { logger } from '../systemlog.js'
17+
import { logger } from '../systemlog.cjs'
1818

1919
import { createRequestContext, getRequestContext } from './request-context.cjs'
2020
import { getTracer } from './tracer.cjs'

src/run/handlers/tracing.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import {
77
SEMRESATTRS_SERVICE_VERSION,
88
} from '@opentelemetry/semantic-conventions'
99

10+
import { logger } from '../systemlog.cjs'
11+
1012
const {
1113
default: { version, name },
1214
} = await import('../../../package.json')
@@ -31,7 +33,7 @@ process.on('SIGTERM', () => {
3133
.then(
3234
// eslint-disable-next-line @typescript-eslint/no-empty-function
3335
() => {},
34-
(error: unknown) => console.log('Error shutting down OpenTelemetry NodeSDK', error),
36+
(error: unknown) => logger.withError(error).log('Error shutting down OpenTelemetry NodeSDK'),
3537
)
3638
// eslint-disable-next-line n/no-process-exit
3739
.finally(() => process.exit(0))
File renamed without changes.

0 commit comments

Comments
 (0)