avoid repeating initial error message

This commit is contained in:
Jonathan Shook
2020-07-16 09:20:42 -05:00
parent 1db36d849b
commit c81c5187c2
7 changed files with 43 additions and 50 deletions

View File

@@ -305,7 +305,7 @@ public class DocServer implements Runnable {
server.join();
} catch (Exception e) {
logger.error(e.getMessage(), e);
logger.error("error while starting doc server", e);
e.printStackTrace(System.out);
System.exit(2);
}