Increasing logging level for when websocket fails to open due to exception
This commit is contained in:
parent
6e952d4618
commit
1e3fe991e3
|
@ -448,7 +448,7 @@ public class WebSocketSession extends ContainerLifeCycle implements Session, Web
|
||||||
}
|
}
|
||||||
catch (Throwable t)
|
catch (Throwable t)
|
||||||
{
|
{
|
||||||
LOG.ignore(t);
|
LOG.warn(t);
|
||||||
// Exception on end-user WS-Endpoint.
|
// Exception on end-user WS-Endpoint.
|
||||||
// Fast-fail & close connection with reason.
|
// Fast-fail & close connection with reason.
|
||||||
int statusCode = StatusCode.SERVER_ERROR;
|
int statusCode = StatusCode.SERVER_ERROR;
|
||||||
|
|
Loading…
Reference in New Issue