message loop exit logging level as FINE
This commit is contained in:
parent
a2a17ea3cb
commit
a3837e6010
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
});
|
||||
}
|
||||
|
|
|
@ -731,7 +731,7 @@ public final class Capability {
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (hook.getBrand() == Server.BRAND) {
|
||||
var promise = ((Server.LocalClient<T>)hook).getLocalServer(this);
|
||||
if (promise != null) {
|
||||
|
|
Loading…
Reference in a new issue