File tree 1 file changed +9
-2
lines changed
packages/backend/src/logger
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -12,16 +12,23 @@ const defaultFormat = winston.format.combine(
12
12
winston . format . splat ( ) ,
13
13
) ;
14
14
15
+ // Define the type for `opts`
16
+ interface AuditLogFormatOptions {
17
+ isAuditLog : boolean ;
18
+ }
19
+
15
20
const auditLogFormat = winston . format ( ( info , opts ) => {
16
21
const { isAuditLog, ...newInfo } = info ;
17
22
23
+ const options = opts as AuditLogFormatOptions ;
24
+
18
25
if ( isAuditLog ) {
19
26
// keep `isAuditLog` field
20
- return opts . isAuditLog ? info : false ;
27
+ return options . isAuditLog ? info : false ;
21
28
}
22
29
23
30
// remove `isAuditLog` field from non audit log events
24
- return ! opts . isAuditLog ? newInfo : false ;
31
+ return ! options . isAuditLog ? newInfo : false ;
25
32
} ) ;
26
33
27
34
const auditLogWinstonFormat = winston . format . combine (
You can’t perform that action at this time.
0 commit comments