Skip to content

Commit f484141

Browse files
committed
fix(logger): Removed file loggers
1 parent a163552 commit f484141

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

app/lib/logger.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,7 @@ const format = winston.format.combine(
3333
);
3434

3535
const transports = [
36-
new winston.transports.Console(),
37-
new winston.transports.File({
38-
filename: 'logs/error.log',
39-
level: 'error',
40-
}),
41-
new winston.transports.File({ filename: 'logs/all.log' }),
36+
new winston.transports.Console()
4237
];
4338

4439
const Logger = winston.createLogger({

0 commit comments

Comments
 (0)