summaryrefslogtreecommitdiff
path: root/nrf-softdevice/src/ble/gatt_server.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <dirbaio@dirbaio.net>2022-07-07 23:26:19 +0200
committerDario Nieuwenhuis <dirbaio@dirbaio.net>2022-07-07 23:26:19 +0200
commit41db26cea32fa4ed213b666530ea14ab7027a2f0 (patch)
tree1fc285a9ff88b7f27e29844150ebe03b9f327005 /nrf-softdevice/src/ble/gatt_server.rs
parent92139b7c647b6ca2242b0b304b6685e0b2b0dba2 (diff)
downloadnrf-softdevice-41db26cea32fa4ed213b666530ea14ab7027a2f0.zip
Lower some log levels.
Ideally during normal operation very little things should be logged at `info` level. Lower them to trace/debug. As a general rule, I'm setting logs that fire per packet to `trace` and everything else to `debug`.
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 99d22dd..a9559cc 100644
--- a/nrf-softdevice/src/ble/gatt_server.rs
+++ b/nrf-softdevice/src/ble/gatt_server.rs
@@ -183,7 +183,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();