Return-Path: From: Andrei Emeltchenko To: linux-bluetooth@vger.kernel.org Subject: [PATCHv3 4/9] android/hal: Add extra logs Date: Tue, 29 Oct 2013 14:57:34 +0200 Message-Id: <1383051459-29495-5-git-send-email-Andrei.Emeltchenko.news@gmail.com> In-Reply-To: <1383051459-29495-1-git-send-email-Andrei.Emeltchenko.news@gmail.com> References: <1383051459-29495-1-git-send-email-Andrei.Emeltchenko.news@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: From: Andrei Emeltchenko Add extra log prints for printing properties and bluetooth addresses. --- android/hal-bluetooth.c | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/android/hal-bluetooth.c b/android/hal-bluetooth.c index 0b46465..85ccded 100644 --- a/android/hal-bluetooth.c +++ b/android/hal-bluetooth.c @@ -266,7 +266,7 @@ static int set_adapter_property(const bt_property_t *property) static int get_remote_device_properties(bt_bdaddr_t *remote_addr) { - DBG(""); + DBG("bdaddr: %s", bdaddr2str(remote_addr)); if (!interface_ready()) return BT_STATUS_NOT_READY; @@ -277,7 +277,8 @@ static int get_remote_device_properties(bt_bdaddr_t *remote_addr) static int get_remote_device_property(bt_bdaddr_t *remote_addr, bt_property_type_t type) { - DBG(""); + DBG("bdaddr: %s prop: %s", bdaddr2str(remote_addr), + bt_property_type_t2str(type)); if (!interface_ready()) return BT_STATUS_NOT_READY; @@ -288,7 +289,8 @@ static int get_remote_device_property(bt_bdaddr_t *remote_addr, static int set_remote_device_property(bt_bdaddr_t *remote_addr, const bt_property_t *property) { - DBG(""); + DBG("bdaddr: %s prop: %s", bdaddr2str(remote_addr), + btproperty2str(property)); if (!interface_ready()) return BT_STATUS_NOT_READY; @@ -298,7 +300,7 @@ static int set_remote_device_property(bt_bdaddr_t *remote_addr, static int get_remote_service_record(bt_bdaddr_t *remote_addr, bt_uuid_t *uuid) { - DBG(""); + DBG("bdaddr: %s", bdaddr2str(remote_addr)); if (!interface_ready()) return BT_STATUS_NOT_READY; @@ -308,7 +310,7 @@ static int get_remote_service_record(bt_bdaddr_t *remote_addr, bt_uuid_t *uuid) static int get_remote_services(bt_bdaddr_t *remote_addr) { - DBG(""); + DBG("bdaddr: %s", bdaddr2str(remote_addr)); if (!interface_ready()) return BT_STATUS_NOT_READY; @@ -340,7 +342,7 @@ static int create_bond(const bt_bdaddr_t *bd_addr) { struct hal_cmd_create_bond cmd; - DBG(""); + DBG("bdaddr: %s", bdaddr2str(bd_addr)); if (!interface_ready()) return BT_STATUS_NOT_READY; @@ -355,7 +357,7 @@ static int cancel_bond(const bt_bdaddr_t *bd_addr) { struct hal_cmd_cancel_bond cmd; - DBG(""); + DBG("bdaddr: %s", bdaddr2str(bd_addr)); if (!interface_ready()) return BT_STATUS_NOT_READY; @@ -370,7 +372,7 @@ static int remove_bond(const bt_bdaddr_t *bd_addr) { struct hal_cmd_remove_bond cmd; - DBG(""); + DBG("bdaddr: %s", bdaddr2str(bd_addr)); if (!interface_ready()) return BT_STATUS_NOT_READY; @@ -386,7 +388,7 @@ static int pin_reply(const bt_bdaddr_t *bd_addr, uint8_t accept, { struct hal_cmd_pin_reply cmd; - DBG(""); + DBG("bdaddr: %s", bdaddr2str(bd_addr)); if (!interface_ready()) return BT_STATUS_NOT_READY; @@ -405,7 +407,7 @@ static int ssp_reply(const bt_bdaddr_t *bd_addr, bt_ssp_variant_t variant, { struct hal_cmd_ssp_reply cmd; - DBG(""); + DBG("bdaddr: %s", bdaddr2str(bd_addr)); if (!interface_ready()) return BT_STATUS_NOT_READY; -- 1.7.10.4