Skip to content

Commit 182143d

Browse files
authored
Remove leftover debugging statement on error (#87128) (#87136)
A debugging statement was left being printed when ES exits with a non-zero status. This commit removes the debug statement. relates #85758
1 parent 3fb60a1 commit 182143d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

server/src/main/java/org/elasticsearch/bootstrap/Elasticsearch.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ private static void exitWithUnknownException(PrintStream err, Exception e) {
105105
}
106106

107107
private static void gracefullyExit(PrintStream err, int exitCode) {
108-
err.println("EXITING with non-zero status: " + exitCode);
109108
printLogsSuggestion(err);
110109
err.flush();
111110
exit(exitCode);

0 commit comments

Comments
 (0)