Skip to content

Commit ecbae8b

Browse files
committed
chore : 채팅 세션 정리중 예외 log info 수준으로 낮춤
1 parent 80950d8 commit ecbae8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/ezcode/codetest/infrastructure/event/listener/WebSocketEventListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void onApplicationEvent(SessionDisconnectEvent event) {
5151
messageService.handleChatRoomEntryExitMessage(ChatMessageTemplate.CHAT_ROOM_LEFT.format(nickName),
5252
chatRoom.getId());
5353
} catch (Exception e) {
54-
log.warn("SessionDisconnectEvent 처리 중 예외 발생, 채팅 관련 웹소켓 세션이 아닙니다.", e);
54+
log.info("SessionDisconnectEvent 처리 중 예외 발생, 채팅 관련 웹소켓 세션이 아닙니다.", e);
5555
}
5656
}
5757
}

0 commit comments

Comments
 (0)