Skip to content

Commit

Permalink
[FLINK-2994] minor correction for newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
mxm committed Nov 13, 2015
1 parent 00e44ed commit 9a911c8
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -919,8 +919,11 @@ private int handleError(Throwable t) {
}
LOG.error("Error while running the command.", t);

System.err.println("\n------------------------------------------------------------");
System.err.println(" The program finished with the following exception:\n");
System.err.println();
System.err.println("------------------------------------------------------------");
System.err.println(" The program finished with the following exception:");
System.err.println();

if (t.getCause() instanceof InvalidProgramException) {
System.err.println(t.getCause().getMessage());
StackTraceElement[] trace = t.getCause().getStackTrace();
Expand Down

0 comments on commit 9a911c8

Please sign in to comment.