diff --git a/subsys/bluetooth/host/hci_core.c b/subsys/bluetooth/host/hci_core.c index a13aec2ba0f..38e1e9f7e86 100644 --- a/subsys/bluetooth/host/hci_core.c +++ b/subsys/bluetooth/host/hci_core.c @@ -4993,7 +4993,7 @@ static int bt_init(void) if (IS_ENABLED(CONFIG_BT_SETTINGS)) { if (!bt_dev.id_count) { - BT_WARN("No ID address. App must call settings_load()"); + BT_INFO("No ID address. App must call settings_load()"); return 0; } diff --git a/subsys/bluetooth/mesh/cfg_srv.c b/subsys/bluetooth/mesh/cfg_srv.c index 9f4a54f9373..bb35e4079f2 100644 --- a/subsys/bluetooth/mesh/cfg_srv.c +++ b/subsys/bluetooth/mesh/cfg_srv.c @@ -129,7 +129,7 @@ static void dev_comp_data_get(struct bt_mesh_model *model, page = net_buf_simple_pull_u8(buf); if (page != 0U) { - BT_WARN("Composition page %u not available", page); + BT_DBG("Composition page %u not available", page); page = 0U; } diff --git a/subsys/bluetooth/mesh/proxy.c b/subsys/bluetooth/mesh/proxy.c index 2fe1875aadb..2c9a84d07a1 100644 --- a/subsys/bluetooth/mesh/proxy.c +++ b/subsys/bluetooth/mesh/proxy.c @@ -1138,7 +1138,7 @@ static s32_t gatt_proxy_advertise(struct bt_mesh_subnet *sub) BT_DBG(""); if (conn_count == CONFIG_BT_MAX_CONN) { - BT_WARN("Connectable advertising deferred (max connections)"); + BT_DBG("Connectable advertising deferred (max connections)"); return remaining; }