Skip to content

Commit 393b8ac

Browse files
committed
define type of opts in customLogger.ts to fix tsc errors
Signed-off-by: Kashish Mittal <[email protected]>
1 parent 76b3678 commit 393b8ac

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

packages/backend/src/logger/customLogger.ts

+9-2
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,23 @@ const defaultFormat = winston.format.combine(
1212
winston.format.splat(),
1313
);
1414

15+
// Define the type for `opts`
16+
interface AuditLogFormatOptions {
17+
isAuditLog: boolean;
18+
}
19+
1520
const auditLogFormat = winston.format((info, opts) => {
1621
const { isAuditLog, ...newInfo } = info;
1722

23+
const options = opts as AuditLogFormatOptions;
24+
1825
if (isAuditLog) {
1926
// keep `isAuditLog` field
20-
return opts.isAuditLog ? info : false;
27+
return options.isAuditLog ? info : false;
2128
}
2229

2330
// remove `isAuditLog` field from non audit log events
24-
return !opts.isAuditLog ? newInfo : false;
31+
return !options.isAuditLog ? newInfo : false;
2532
});
2633

2734
const auditLogWinstonFormat = winston.format.combine(

0 commit comments

Comments
 (0)