runtime: demote dropped and malformed packets msgs to debug

This commit is contained in:
Robert Jördens 2018-03-07 14:28:21 +01:00
parent 4af7600b2d
commit 7afb23e8be
1 changed files with 2 additions and 2 deletions

View File

@ -237,13 +237,13 @@ fn startup_ethernet() {
Ok(true) => (), Ok(true) => (),
Ok(false) => break, Ok(false) => break,
Err(smoltcp::Error::Unrecognized) => (), Err(smoltcp::Error::Unrecognized) => (),
Err(err) => warn!("network error: {}", err) Err(err) => debug!("network error: {}", err)
} }
} }
} }
if let Some(_net_stats_diff) = net_stats.update() { if let Some(_net_stats_diff) = net_stats.update() {
warn!("ethernet mac:{}", ethmac::EthernetStatistics::new()); debug!("ethernet mac:{}", ethmac::EthernetStatistics::new());
} }
} }
} }