diff --git a/src/rust/lqos_config/src/network_json/network_json_counting.rs b/src/rust/lqos_config/src/network_json/network_json_counting.rs index 787ace04..c73dfc11 100644 --- a/src/rust/lqos_config/src/network_json/network_json_counting.rs +++ b/src/rust/lqos_config/src/network_json/network_json_counting.rs @@ -1,4 +1,4 @@ -use log::warn; +use log::{debug, warn}; use lqos_utils::units::DownUpOrder; use crate::NetworkJsonNode; @@ -46,7 +46,7 @@ impl NetworkJsonCounting { if let Some(node) = self.nodes.get_mut(*idx) { node.current_throughput.checked_add_tuple(bytes); } else { - warn!("No network tree entry for index {idx}"); + debug!("No network tree entry for index {idx}"); } } } @@ -59,7 +59,7 @@ impl NetworkJsonCounting { if let Some(node) = self.nodes.get(*idx) { node.rtts.insert((rtt * 100.0) as u16); } else { - warn!("No network tree entry for index {idx}"); + debug!("No network tree entry for index {idx}"); } } } @@ -71,7 +71,7 @@ impl NetworkJsonCounting { if let Some(node) = self.nodes.get_mut(*idx) { node.current_tcp_retransmits.checked_add(tcp_retransmits); } else { - warn!("No network tree entry for index {idx}"); + debug!("No network tree entry for index {idx}"); } } } @@ -84,7 +84,7 @@ impl NetworkJsonCounting { node.current_marks.checked_add(*marks); node.current_drops.checked_add(*drops); } else { - warn!("No network tree entry for index {idx}"); + debug!("No network tree entry for index {idx}"); } } } diff --git a/src/rust/lts2_sys/liblts2_client.a b/src/rust/lts2_sys/liblts2_client.a index 89fb15b4..68ba5484 100644 Binary files a/src/rust/lts2_sys/liblts2_client.a and b/src/rust/lts2_sys/liblts2_client.a differ