Diff between 330a3ab42dd267700fed12aa94be848bdc99fc99 and e71b3028a2a975b0601e676cb6934497e23c83af

Changed Files

File Additions Deletions Status
android/gatt.c +5 -0 modified

Full Patch

diff --git a/android/gatt.c b/android/gatt.c
index 532a416..70cd5fe 100644
--- a/android/gatt.c
+++ b/android/gatt.c
@@ -2165,6 +2165,9 @@ static void cache_all_srvc_chars(struct service *srvc, GSList *characteristics)
 							srvc->incl.range.end;
 		}
 
+		DBG("attr handle = 0x%04x, end handle = 0x%04x uuid: %s",
+				ch->ch.handle, ch->end_handle, ch->ch.uuid);
+
 		if (!queue_push_tail(srvc->chars, ch)) {
 			error("gatt: Error while caching characteristic");
 			destroy_characteristic(ch);
@@ -2321,6 +2324,8 @@ static void gatt_discover_desc_cb(guint8 status, GSList *descs,
 		descr->id.instance = i++;
 		descr->handle = desc->handle;
 
+		DBG("attr handle = 0x%04x, uuid: %s", desc->handle, desc->uuid);
+
 		if (!queue_push_tail(ch->descriptors, descr))
 			free(descr);
 	}