From 4445b57a7c04013be89822b744fb53dbacbe37d7 Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Wed, 11 Mar 2026 18:36:32 +0100 Subject: [PATCH] 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. --- crates/weft-appd/src/ws.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/weft-appd/src/ws.rs b/crates/weft-appd/src/ws.rs index 964e6a6..39fff81 100644 --- a/crates/weft-appd/src/ws.rs +++ b/crates/weft-appd/src/ws.rs @@ -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; } };