Brian O'Connor
Committed by Gerrit Code Review

Printing stacktrace in UiWebSocket.java catch block log message

Change-Id: I867583e9e4881e6264196062f2c13c591c7ca78d
......@@ -109,7 +109,7 @@ public class UiWebSocket
log.info("GUI client connected");
} catch (ServiceNotFoundException e) {
log.warn("Unable to open GUI connection; services have been shut-down");
log.warn("Unable to open GUI connection; services have been shut-down", e);
this.connection.close();
this.connection = null;
this.control = null;
......