Skip to content

Commit e8e9503

Browse files
committed
CCM-13675: Event code generation improvements
1 parent 8c42a94 commit e8e9503

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

utils/utils/src/logger.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ const { combine, errors, json, timestamp } = winston.format;
44

55
export const logger = winston.createLogger({
66
level: process.env.LOG_LEVEL || 'info',
7-
format: combine(
8-
errors({ stack: true, cause: true }),
9-
timestamp(),
10-
json()),
7+
format: combine(errors({ stack: true, cause: true }), timestamp(), json()),
118
transports: [
129
new winston.transports.Stream({
1310
stream: process.stdout,

0 commit comments

Comments
 (0)