mirror of
https://github.com/marcoallegretti/WEFT_OS.git
synced 2026-03-27 01:13: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) {
|
let req: Request = match serde_json::from_str(&text) {
|
||||||
Ok(r) => r,
|
Ok(r) => r,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
tracing::warn!(error = %e, "invalid WS request");
|
tracing::debug!(error = %e, "unrecognised WS message");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue