dnetview/ view: removed some debug statements

This commit is contained in:
lunar-mining
2022-05-21 09:00:15 +02:00
parent 837292472e
commit c34330c32e

View File

@@ -17,7 +17,6 @@ use crate::{
error::{DnetViewError, DnetViewResult},
model::{NodeInfo, SelectableObject},
};
use log::debug;
#[derive(Debug)]
pub struct View {
@@ -96,10 +95,6 @@ impl View {
let mut id_list = self.render_id_list(f, slice.clone())?;
id_list.dedup();
debug!("ACTIVE ID LIST {:?}", self.active_ids.ids);
debug!("ID LIST {:?}", id_list);
debug!("ID LIST LEN {:?}", id_list.len());
debug!("ACTIVE ID LIST LEN {:?}", self.active_ids.ids.len());
if id_list.is_empty() {
// we have not received any data
Ok(())