Skip to content

Commit

Permalink
Remove leftover debugging statement on error
Browse files Browse the repository at this point in the history
A debugging statement was left being printed when ES exits with a
non-zero status. This commit removes the debug statement.

relates elastic#85758
  • Loading branch information
rjernst committed May 25, 2022
1 parent 3fb60a1 commit 83df8f6
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ private static void exitWithUnknownException(PrintStream err, Exception e) {
}

private static void gracefullyExit(PrintStream err, int exitCode) {
err.println("EXITING with non-zero status: " + exitCode);
printLogsSuggestion(err);
err.flush();
exit(exitCode);
Expand Down

0 comments on commit 83df8f6

Please sign in to comment.