From c067761adcff5a1aff6f9fa243274e5bfa732f99 Mon Sep 17 00:00:00 2001 From: Gustav Toft Date: Tue, 1 Oct 2024 08:05:18 +0200 Subject: [PATCH] Fixed acording to review comments. --- src/asynch/control.rs | 1 - src/asynch/network.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/asynch/control.rs b/src/asynch/control.rs index c350a3f..b059467 100644 --- a/src/asynch/control.rs +++ b/src/asynch/control.rs @@ -121,7 +121,6 @@ impl<'a, const INGRESS_BUF_SIZE: usize> atat::asynch::AtatClient .wait_response(Duration::from_millis(Cmd::MAX_TIMEOUT_MS.into())) .await?; let response: &atat::Response = &response.borrow(); - info!("response: {:?}", defmt::Debug2Format(&response)); cmd.parse(response.into()) } } diff --git a/src/asynch/network.rs b/src/asynch/network.rs index 8dec528..6f28b9e 100644 --- a/src/asynch/network.rs +++ b/src/asynch/network.rs @@ -169,7 +169,6 @@ where else { return Err(Error::Network); }; - info!("Network status changed"); let NetworkStatusResponse { status: NetworkStatus::IPv4Address(ipv4),