Skip to content

Commit 2c5ef5c

Browse files
committed
fix(socket): use warn log level
1 parent c8c250d commit 2c5ef5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/sdk-socket-server-next/src/logger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const customFormat = format.printf((ti) => {
4646
// Create a function to initialize the logger
4747
export function createLogger(isDevelopment: boolean) {
4848
return winston.createLogger({
49-
level: isDevelopment ? 'debug' : 'notice',
49+
level: isDevelopment ? 'debug' : 'warn',
5050
format: isDevelopment
5151
? winston.format.combine(winston.format.timestamp(), customFormat)
5252
: winston.format.json(),

0 commit comments

Comments
 (0)