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() { public void runMessageLoop() {
this.pollOnce().thenRun(this::runMessageLoop).exceptionally(exc -> { this.pollOnce().thenRun(this::runMessageLoop).exceptionally(exc -> {
LOGGER.warning(() -> "Event loop exited: " + exc.getMessage()); LOGGER.log(Level.FINE, "Event loop exited", exc);
return null; return null;
}); });
} }

View file

@ -731,7 +731,7 @@ public final class Capability {
break; break;
} }
} }
if (hook.getBrand() == Server.BRAND) { if (hook.getBrand() == Server.BRAND) {
var promise = ((Server.LocalClient<T>)hook).getLocalServer(this); var promise = ((Server.LocalClient<T>)hook).getLocalServer(this);
if (promise != null) { if (promise != null) {