summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGustavo F. Padovan <padovan@profusion.mobi>2011-02-17 19:00:49 -0300
committerMarcel Holtmann <marcel@holtmann.org>2011-02-17 16:02:54 -0800
commit8250c1edad055976bb48ebd4aaa49aa078e8ec93 (patch)
treeb5dbde44b8fddb644bb6bbd5ceb49c458638a49c /plugins
parent10caaadd9b044df70b06bd4362ab7d0207f328bc (diff)
downloadofono-8250c1edad055976bb48ebd4aaa49aa078e8ec93.tar.bz2
bluetooth: add DBG() messages
Diffstat (limited to 'plugins')
-rw-r--r--plugins/bluetooth.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/bluetooth.c b/plugins/bluetooth.c
index 5f2d80dc..7c2d5b06 100644
--- a/plugins/bluetooth.c
+++ b/plugins/bluetooth.c
@@ -280,6 +280,8 @@ static void device_properties_cb(DBusPendingCall *call, gpointer user_data)
goto done;
}
+ DBG("");
+
bluetooth_parse_properties(reply, "UUIDs", has_uuid, &have_uuid,
"Adapter", parse_string, &adapter,
"Address", parse_string, &device_addr,
@@ -410,6 +412,8 @@ static void adapter_properties_cb(DBusPendingCall *call, gpointer user_data)
goto done;
}
+ DBG("");
+
bluetooth_parse_properties(reply,
"Devices", parse_devices, &device_list,
"Address", parse_string, &addr,