message loop exit logging level as FINE

This commit is contained in:
Vaci Koblizek 2020-11-26 16:09:07 +00:00
parent a2a17ea3cb
commit a3837e6010
2 changed files with 2 additions and 2 deletions

View file

@ -433,7 +433,7 @@ final class RpcState<VatId> {
public void runMessageLoop() {
this.pollOnce().thenRun(this::runMessageLoop).exceptionally(exc -> {
LOGGER.warning(() -> "Event loop exited: " + exc.getMessage());
LOGGER.log(Level.FINE, "Event loop exited", exc);
return null;
});
}