From 4a5680ac0919a0a75aac678131aa82b6db7e3521 Mon Sep 17 00:00:00 2001 From: SongFerngWang Date: Thu, 8 Sep 2022 18:45:41 +0800 Subject: [PATCH] Add more logs for analysis Bug: 245657079 Test: NA. It is the log only. Change-Id: I9909acc27ccbef48f653cfcd0cc84942c4353eac --- .../android/settings/bluetooth/BluetoothPairingRequest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/com/android/settings/bluetooth/BluetoothPairingRequest.java b/src/com/android/settings/bluetooth/BluetoothPairingRequest.java index 6b80256285a..d5de41a20f9 100644 --- a/src/com/android/settings/bluetooth/BluetoothPairingRequest.java +++ b/src/com/android/settings/bluetooth/BluetoothPairingRequest.java @@ -24,6 +24,7 @@ import android.content.Intent; import android.os.PowerManager; import android.os.UserHandle; import android.text.TextUtils; +import android.util.Log; import com.android.settingslib.bluetooth.LocalBluetoothManager; @@ -34,6 +35,7 @@ import com.android.settingslib.bluetooth.LocalBluetoothManager; * starts a notification in the status bar that can be clicked to bring up the same dialog. */ public final class BluetoothPairingRequest extends BroadcastReceiver { + private static final String TAG = "BluetoothPairingRequest"; @Override public void onReceive(Context context, Intent intent) { @@ -74,6 +76,7 @@ public final class BluetoothPairingRequest extends BroadcastReceiver { } } else if (TextUtils.equals(action, BluetoothCsipSetCoordinator.ACTION_CSIS_SET_MEMBER_AVAILABLE)) { + Log.d(TAG, "Receive ACTION_CSIS_SET_MEMBER_AVAILABLE"); if (device == null) { return; }