Skip to content

Commit 18b877d

Browse files
committed
fix: Explicit return types
1 parent 93ce089 commit 18b877d

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/logger.ts

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { FastifyReply, FastifyRequest } from 'fastify'
1+
import type { FastifyServerOptions } from 'fastify'
22
import crypto from 'node:crypto'
33
import pino from 'pino'
44
import redactEnv from 'redact-env'
@@ -23,7 +23,7 @@ export function getLoggerOptions({
2323
name,
2424
redactEnv = [],
2525
redactLogPaths = []
26-
}: Options) {
26+
}: Options): FastifyServerOptions['logger'] {
2727
// todo: Move env redaction to a Pino v7+ Transport
2828
return {
2929
level:
@@ -48,25 +48,27 @@ export function getLoggerOptions({
4848
commit: process.env.COMMIT_ID?.slice(0, 8)
4949
},
5050
serializers: {
51-
req(req: FastifyRequest) {
51+
req(req) {
5252
return {
5353
method: req.method,
5454
url: req.url,
5555
headers: req.headers
5656
}
5757
},
58-
res(res: FastifyReply) {
58+
res(res) {
5959
return {
6060
statusCode: res.statusCode,
61-
headers: res.getHeaders()
61+
headers: res.getHeaders?.() ?? {}
6262
}
6363
}
6464
}
6565
}
6666
}
6767

68-
export const makeReqIdGenerator = (defaultSalt: string = randomID()) =>
69-
function genReqId(req: FastifyRequest): string {
68+
export const makeReqIdGenerator = (
69+
defaultSalt: string = randomID()
70+
): FastifyServerOptions['genReqId'] =>
71+
function genReqId(req) {
7072
let ipAddress: string = ''
7173
const xForwardedFor = req.headers['x-forwarded-for']
7274
if (xForwardedFor) {

0 commit comments

Comments
 (0)