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
vaadin-bot and TatuLund authored May 19, 2022
1 parent 8b69c4a commit b5d31c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ public Optional<Runnable> handle(UI ui, JsonObject invocationJson) {
StateNode node = ui.getInternals().getStateTree()
.getNodeById(getNodeId(invocationJson));
if (node == null) {
getLogger().warn("Ignoring RPC for non-existent node: {}",
getLogger().debug("Ignoring RPC for non-existent node: {}",
getNodeId(invocationJson));
return Optional.empty();
}
if (!node.isAttached()) {
getLogger().warn("Ignoring RPC for detached node: {}",
getLogger().debug("Ignoring RPC for detached node: {}",
getNodeId(invocationJson));
return Optional.empty();
}
Expand Down

0 comments on commit b5d31c9

Please sign in to comment.