Added capture of errors during server-side websocket handling.

Change-Id: I71a96aba30a7a232dc5d5f305c5da5a81d7b09d1
This commit is contained in:
Thomas Vachuska 2019-03-11 12:50:01 -07:00
parent 1c8b7abceb
commit addf6345a3

View File

@ -259,7 +259,7 @@ public class UiWebSocket extends WebSocketAdapter implements UiConnection {
}
}
} catch (Exception e) {
} catch (Error | Exception e) {
log.warn("Unable to parse GUI message {} due to {}", data, e);
log.debug("Boom!!!", e);
}