Skip to content

Commit

Permalink
chore: Change debug level to info as this logging is frequent in harm…
Browse files Browse the repository at this point in the history
…less cases (#13400) (#13799)

Closes: vaadin/flow-components#1157

Co-authored-by: Tatu Lund <[email protected]>
  • Loading branch information
2 people authored and mshabarov committed Jun 10, 2022
1 parent 527a1d3 commit 2a8d5c4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ public Optional<Runnable> handle(UI ui, JsonObject invocationJson) {
StateNode node = ui.getInternals().getStateTree()
.getNodeById(getNodeId(invocationJson));
if (node == null) {
getLogger().warn("Got an RPC for non-existent node: {}",
getLogger().debug("Ignoring RPC for non-existent node: {}",
getNodeId(invocationJson));
return Optional.empty();
}
if (!node.isAttached()) {
getLogger().warn("Got an RPC for detached node: {}",
getLogger().debug("Ignoring RPC for detached node: {}",
getNodeId(invocationJson));
return Optional.empty();
}
Expand Down

0 comments on commit 2a8d5c4

Please sign in to comment.