Merge "Add a log message in the beginning of function hci_initialize()"
am: e745f573f6
Change-Id: Ia9fa15a85c64c297b911449594b6daf5b8871c0e
diff --git a/hci/src/hci_layer_android.cc b/hci/src/hci_layer_android.cc
index ea867d1..50e0f49 100644
--- a/hci/src/hci_layer_android.cc
+++ b/hci/src/hci_layer_android.cc
@@ -93,6 +93,8 @@
};
void hci_initialize() {
+ LOG_INFO(LOG_TAG, "%s", __func__);
+
btHci = IBluetoothHci::getService();
// If android.hardware.bluetooth* is not found, Bluetooth can not continue.
CHECK(btHci != nullptr);
@@ -130,4 +132,4 @@
LOG_ERROR(LOG_TAG, "Unknown packet type (%d)", event);
break;
}
-}
\ No newline at end of file
+}