diff --git a/system/hci/src/hci_layer_android.cc b/system/hci/src/hci_layer_android.cc index ea867d1bffdc3709c410ea68e8d5fc67f34c5fc3..50e0f49b0352f21419fbf18ef3ad56aad5496686 100644 --- a/system/hci/src/hci_layer_android.cc +++ b/system/hci/src/hci_layer_android.cc @@ -93,6 +93,8 @@ class BluetoothHciCallbacks : public IBluetoothHciCallbacks { }; 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 @@ void hci_transmit(BT_HDR* packet) { LOG_ERROR(LOG_TAG, "Unknown packet type (%d)", event); break; } -} \ No newline at end of file +}