dlmarion commented on code in PR #6161:
URL: https://github.com/apache/accumulo/pull/6161#discussion_r2872103416
##########
server/base/src/main/java/org/apache/accumulo/server/AbstractServer.java:
##########
@@ -228,6 +228,7 @@ public void runServer() throws Exception {
log.info(getClass().getSimpleName() + " process shut down.");
Throwable thrown = err.get();
if (thrown != null) {
+ log.error("Uncaught exception ", thrown);
Review Comment:
May also want to do the following:
```
System.err.println("Uncaught execption in AbstractServer.runServer");
thrown.printStackTrace();
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]