fix(appd): downgrade WS parse failure from warn to debug

App-level weftIpc messages from the system UI routinely fail Request
deserialization since they are not system commands. Using warn generates
log noise during normal operation.
This commit is contained in:
Marco Allegretti 2026-03-11 18:36:32 +01:00
parent 52e9a0a503
commit 4445b57a7c

View file

@ -21,7 +21,7 @@ pub async fn handle_ws_connection(
let req: Request = match serde_json::from_str(&text) {
Ok(r) => r,
Err(e) => {
tracing::warn!(error = %e, "invalid WS request");
tracing::debug!(error = %e, "unrecognised WS message");
continue;
}
};