refactor: replace console.warn with console.info for HID RPC channel events

This commit is contained in:
Adam Shiervani 2025-09-16 12:35:25 +02:00
parent c409e46292
commit 37acc11b26
1 changed files with 2 additions and 2 deletions

View File

@ -189,12 +189,12 @@ export function useHidRpc(onHidRpcMessage?: (payload: RpcMessage) => void) {
};
const openHandler = () => {
console.warn("HID RPC channel opened");
console.info("HID RPC channel opened");
sendHandshake();
};
const closeHandler = () => {
console.warn("HID RPC channel closed");
console.info("HID RPC channel closed");
setRpcHidProtocolVersion(null);
};