Remove debug logging.

This commit is contained in:
Bill Thiede 2019-09-22 07:34:44 -07:00
parent 14b58f766a
commit 93229efb6e

View File

@ -124,8 +124,6 @@ impl NetworkSpeedWidget {
let rx_rate = cur_stat.rx_rate(&self.last_stat);
let tx_rate = cur_stat.tx_rate(&self.last_stat);
dbg!(&self.rx_history);
dbg!(&self.tx_history);
self.rx_history.push_back(rx_rate as f32);
self.rx_history.pop_front();
self.tx_history.push_back(tx_rate as f32);
@ -148,7 +146,6 @@ impl Widget for NetworkSpeedWidget {
} else {
("".to_string(), "".to_string())
};
eprintln!("rx_history {} tx_history {}", &rx_history, &tx_history);
data.use_pango();
data.append_full_text(&format!(
"Rx:<tt>{}</tt>{} Tx:<tt>{}</tt>{}",