Skip to content

Commit

Permalink
fix: Never warn about copilot messages (#19585) (#19586)
Browse files Browse the repository at this point in the history
  • Loading branch information
vaadin-bot authored Jun 17, 2024
1 parent f46e62b commit 16b8ce6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,8 @@ public void onMessage(AtmosphereResource resource, String message) {
break;
}
}
if (!handled) {
if (!handled && command != null
&& !command.startsWith("copilot-")) {
getLogger()
.info("Unknown command from the browser: " + command);
}
Expand Down

0 comments on commit 16b8ce6

Please sign in to comment.