summaryrefslogtreecommitdiff
path: root/nrf-softdevice/src/ble/gatt_server.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/gatt_server.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/gatt_server.rs')
-rw-r--r--nrf-softdevice/src/ble/gatt_server.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/nrf-softdevice/src/ble/gatt_server.rs b/nrf-softdevice/src/ble/gatt_server.rs
index ad12702..9c655fb 100644
--- a/nrf-softdevice/src/ble/gatt_server.rs
+++ b/nrf-softdevice/src/ble/gatt_server.rs
@@ -130,7 +130,7 @@ where
server.on_write(params.handle, &v).map(|e| f(e));
}
raw::BLE_GATTS_EVTS_BLE_GATTS_EVT_SYS_ATTR_MISSING => {
- info!("initializing gatt sys att");
+ debug!("initializing gatt sys att");
let ret =
raw::sd_ble_gatts_sys_attr_set(conn_handle, ::core::ptr::null(), 0, 0);
RawError::convert(ret).err();