File tree 1 file changed +9
-7
lines changed
1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
- import type { FastifyReply , FastifyRequest } from 'fastify'
1
+ import type { FastifyServerOptions } from 'fastify'
2
2
import crypto from 'node:crypto'
3
3
import pino from 'pino'
4
4
import redactEnv from 'redact-env'
@@ -23,7 +23,7 @@ export function getLoggerOptions({
23
23
name,
24
24
redactEnv = [ ] ,
25
25
redactLogPaths = [ ]
26
- } : Options ) {
26
+ } : Options ) : FastifyServerOptions [ 'logger' ] {
27
27
// todo: Move env redaction to a Pino v7+ Transport
28
28
return {
29
29
level :
@@ -48,25 +48,27 @@ export function getLoggerOptions({
48
48
commit : process . env . COMMIT_ID ?. slice ( 0 , 8 )
49
49
} ,
50
50
serializers : {
51
- req ( req : FastifyRequest ) {
51
+ req ( req ) {
52
52
return {
53
53
method : req . method ,
54
54
url : req . url ,
55
55
headers : req . headers
56
56
}
57
57
} ,
58
- res ( res : FastifyReply ) {
58
+ res ( res ) {
59
59
return {
60
60
statusCode : res . statusCode ,
61
- headers : res . getHeaders ( )
61
+ headers : res . getHeaders ?. ( ) ?? { }
62
62
}
63
63
}
64
64
}
65
65
}
66
66
}
67
67
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 ) {
70
72
let ipAddress : string = ''
71
73
const xForwardedFor = req . headers [ 'x-forwarded-for' ]
72
74
if ( xForwardedFor ) {
You can’t perform that action at this time.
0 commit comments