Increasing logging level for when websocket fails to open due to exception

This commit is contained in:
Joakim Erdfelt 2015-03-17 10:22:05 -07:00
parent 6e952d4618
commit 1e3fe991e3
1 changed files with 1 additions and 1 deletions

View File

@ -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;