Skip to content

Commit

Permalink
Don't crash on shutdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Bauer committed Nov 5, 2014
1 parent a0bc7c3 commit fa7efc5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ protected void shutdownRouter() {
if (cause instanceof InterruptedException) {
log.log(Level.INFO, "Router shutdown was interrupted: " + ex, cause);
} else {
throw new RuntimeException("Router error on shutdown: " + ex, ex);
log.log(Level.SEVERE, "Router error on shutdown: " + ex, cause);
}
}
}
Expand Down

0 comments on commit fa7efc5

Please sign in to comment.