Skip to content

Commit

Permalink
Remove some printStackTrace
Browse files Browse the repository at this point in the history
  • Loading branch information
rmaucher committed Oct 9, 2023
1 parent eb884ff commit a495839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/org/apache/catalina/startup/Bootstrap.java
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ public static void main(String args[]) {
bootstrap.init();
} catch (Throwable t) {
handleThrowable(t);
t.printStackTrace();
log.error("Init exception", t);
return;
}
daemon = bootstrap;
Expand Down Expand Up @@ -494,7 +494,7 @@ public static void main(String args[]) {
t = t.getCause();
}
handleThrowable(t);
t.printStackTrace();
log.error("Error running command", t);
System.exit(1);
}
}
Expand Down

0 comments on commit a495839

Please sign in to comment.