Skip to content

Commit

Permalink
Correcting exception management in Janus boot that was preventing som…
Browse files Browse the repository at this point in the history
…e exception to be seen
  • Loading branch information
ngaud committed Dec 3, 2019
1 parent f146f5d commit 17ed7c8
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -678,7 +678,8 @@ public static void showError(String message, Throwable exception) {
PrintWriter logger = new PrintWriter(getErrorConsoleLogger());
if (message != null && !message.isEmpty()) {
logger.println(message);
} else if (exception != null) {
}
if (exception != null) {
exception.printStackTrace(logger);
}
logger.println();
Expand Down

0 comments on commit 17ed7c8

Please sign in to comment.