diff options
| author | Serguey Parkhomovsky <xindigo@gmail.com> | 2026-03-21 12:24:01 -0700 |
|---|---|---|
| committer | Serguey Parkhomovsky <xindigo@gmail.com> | 2026-03-21 12:24:01 -0700 |
| commit | 5712f0469ee604eaa525594a6c5488ca24813afe (patch) | |
| tree | afd6cf7508b6c16b20b0e98506a23a9208f0a615 /src/main.rs | |
| parent | 66603bc707dde0cbbde026333a74866a980dd393 (diff) | |
Remove payload from updated state
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index a59523c..929815f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -205,7 +205,7 @@ async fn poll_bambu( Ok(msg) => { let mut lock = state.write().unwrap(); lock.entry(name.clone()).or_default().update_from(&msg); - debug!(name, payload = ?p.payload, "Updated state"); + debug!(name, "Updated state"); } Err(e) => error!(error = %e, "Failed to deserialize BambuStatus"), } |
