Clear the remaining clippy warnings on the diff surface

This commit is contained in:
Dennis Kobert
2026-09-06 16:25:17 +00:00
parent a911bcc165
commit 9f0e0ebc96
21 changed files with 46 additions and 50 deletions

View File

@@ -546,10 +546,10 @@ impl NodeRuntime {
Some(())
}
});
if result.is_err() {
if let Err(_error) = result {
// TODO: Fix the root of the issue causing the spam of this warning (this at least temporarily disables it in release builds)
#[cfg(debug_assertions)]
warn!("Failed to introspect monitor node {}", result.unwrap_err());
warn!("Failed to introspect monitor node {}", _error);
}
}
}