summaryrefslogtreecommitdiff
path: root/nrf-softdevice/src/ble/central.rs
diff options
context:
space:
mode:
authoralexmoon <alex.r.moon@gmail.com>2022-07-13 11:47:26 -0400
committerGitHub <noreply@github.com>2022-07-13 11:47:26 -0400
commit6a9b6a5da3e2a96e93d55d6a5dd85a217cd4682c (patch)
tree5a9948ca87e34f1154ca1916b3596f6f8d186b6e /nrf-softdevice/src/ble/central.rs
parent29fce52109fcd12cda7767b546e43270b3217264 (diff)
parent41db26cea32fa4ed213b666530ea14ab7027a2f0 (diff)
downloadnrf-softdevice-6a9b6a5da3e2a96e93d55d6a5dd85a217cd4682c.zip
Merge pull request #122 from embassy-rs/less-log
Lower some log levels.
Diffstat (limited to 'nrf-softdevice/src/ble/central.rs')
-rw-r--r--nrf-softdevice/src/ble/central.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/nrf-softdevice/src/ble/central.rs b/nrf-softdevice/src/ble/central.rs
index e2f6aae..e6297c5 100644
--- a/nrf-softdevice/src/ble/central.rs
+++ b/nrf-softdevice/src/ble/central.rs
@@ -57,7 +57,7 @@ pub async fn connect(
return Err(err.into());
}
- info!("connect started");
+ debug!("connect started");
let conn = CONNECT_PORTAL
.wait_once(|ble_evt| unsafe {
@@ -186,7 +186,7 @@ where
}
});
- info!("Scan started");
+ debug!("Scan started");
let res = SCAN_PORTAL
.wait_many(|ble_evt| unsafe {
match (*ble_evt).header.evt_id as u32 {