Diff between 4d789940d828bc8a07a56eb4f374b8943b358c7e and 22f4a6af50097ab7644eaa0e0c79dc78c1989a33

Changed Files

File Additions Deletions Status
src/device.c +4 -0 modified

Full Patch

diff --git a/src/device.c b/src/device.c
index 1b79436..4f29ba9 100644
--- a/src/device.c
+++ b/src/device.c
@@ -3425,6 +3425,8 @@ static void find_included_services(struct browse_req *req, GSList *services)
 	struct included_search *search;
 	struct gatt_primary *prim;
 
+	DBG("service count %u", g_slist_length(services));
+
 	if (services == NULL) {
 		DBG("No services found");
 		register_all_services(req, NULL);
@@ -3445,6 +3447,8 @@ static void primary_cb(uint8_t status, GSList *services, void *user_data)
 {
 	struct browse_req *req = user_data;
 
+	DBG("status %u", status);
+
 	if (status) {
 		struct btd_device *device = req->device;