Committed by
Gerrit Code Review
Printing stacktrace in UiWebSocket.java catch block log message
Change-Id: I867583e9e4881e6264196062f2c13c591c7ca78d
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -109,7 +109,7 @@ public class UiWebSocket | ... | @@ -109,7 +109,7 @@ public class UiWebSocket |
| 109 | log.info("GUI client connected"); | 109 | log.info("GUI client connected"); |
| 110 | 110 | ||
| 111 | } catch (ServiceNotFoundException e) { | 111 | } catch (ServiceNotFoundException e) { |
| 112 | - log.warn("Unable to open GUI connection; services have been shut-down"); | 112 | + log.warn("Unable to open GUI connection; services have been shut-down", e); |
| 113 | this.connection.close(); | 113 | this.connection.close(); |
| 114 | this.connection = null; | 114 | this.connection = null; |
| 115 | this.control = null; | 115 | this.control = null; | ... | ... |
-
Please register or login to post a comment