mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-26 17:03:09 +00:00
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:
parent
52e9a0a503
commit
4445b57a7c
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue