log stack traces at warn or error level

This commit is contained in:
woodser 2024-09-20 11:03:33 -04:00
parent 8d55abe3b9
commit 50f3bd510a
42 changed files with 117 additions and 138 deletions

View file

@ -75,7 +75,7 @@ public class SeedNodeMain extends ExecutableForAppWithP2p {
seedNode = new SeedNode();
UserThread.execute(this::onApplicationLaunched);
} catch (Exception e) {
e.printStackTrace();
log.error("Error launching seed node: {}\n", e.toString(), e);
}
});
}