mesh: Silence proxy not connected log

When performing node reset over a proxy connection, the disconnection is
asynchronous, and will finish after the reset callback goes to the
application. If the application restarts provisioning in this callback,
the disconnected-event is triggered after PB GATT is reactivated, and
this error is printed without any faults actually occurring.

this is port of 82d941069885f7654295c8f5e4bd41cfe72bb131
This commit is contained in:
Krzysztof Kopyściński
2021-01-12 14:05:19 +01:00
committed by Łukasz Rymanowski
parent 14f7dd9182
commit eaa36c971e
+1 -1
View File
@@ -104,7 +104,7 @@ int bt_mesh_pb_gatt_close(uint16_t conn_handle)
BT_DBG("conn %p", conn_handle);
if (link.conn_handle != conn_handle) {
BT_ERR("Not connected");
BT_DBG("Not connected");
return -ENOTCONN;
}