Merge pull request #511 from afischerdev/app-update

App update
This commit is contained in:
afischerdev 2023-03-20 16:59:13 +01:00 committed by GitHub
commit fc22892a66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 552 additions and 142 deletions

View file

@ -352,7 +352,7 @@ public class RoutingEngine extends Thread {
}
private void logException(Throwable t) {
errorMessage = t instanceof IllegalArgumentException ? t.getMessage() : t.toString();
errorMessage = t instanceof RuntimeException ? t.getMessage() : t.toString();
logInfo("Error (linksProcessed=" + linksProcessed + " open paths: " + openSet.getSize() + "): " + errorMessage);
}