From 1e3fe991e3cdaf252fca86acb087cfba02315ebc Mon Sep 17 00:00:00 2001 From: Joakim Erdfelt Date: Tue, 17 Mar 2015 10:22:05 -0700 Subject: [PATCH] Increasing logging level for when websocket fails to open due to exception --- .../org/eclipse/jetty/websocket/common/WebSocketSession.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/WebSocketSession.java b/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/WebSocketSession.java index 1da70b44bf2..2dd1e7897ef 100644 --- a/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/WebSocketSession.java +++ b/jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/WebSocketSession.java @@ -448,7 +448,7 @@ public class WebSocketSession extends ContainerLifeCycle implements Session, Web } catch (Throwable t) { - LOG.ignore(t); + LOG.warn(t); // Exception on end-user WS-Endpoint. // Fast-fail & close connection with reason. int statusCode = StatusCode.SERVER_ERROR;