diff options
| author | 2021-11-29 05:28:33 +0000 | |
|---|---|---|
| committer | 2021-11-29 05:28:33 +0000 | |
| commit | fc7e697e4c19be0ff3191128c0fe2893a6c0b393 (patch) | |
| tree | 74bb5204246a9477f4574c8d05893b957848056c | |
| parent | bf6cc679764f94a924b61c85f9203eaf109d03fb (diff) | |
| parent | 286d24fd0d300cec05bdbfb2affe963a24289507 (diff) | |
Merge "Print anonymized address when new profile update" am: 286d24fd0d
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1903973
Change-Id: I10a0a068f8a53b2df246dde20cddcdddad4ff0b1
| -rw-r--r-- | packages/SettingsLib/src/com/android/settingslib/bluetooth/CachedBluetoothDevice.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/SettingsLib/src/com/android/settingslib/bluetooth/CachedBluetoothDevice.java b/packages/SettingsLib/src/com/android/settingslib/bluetooth/CachedBluetoothDevice.java index 021ba2247e67..ddee433d3997 100644 --- a/packages/SettingsLib/src/com/android/settingslib/bluetooth/CachedBluetoothDevice.java +++ b/packages/SettingsLib/src/com/android/settingslib/bluetooth/CachedBluetoothDevice.java @@ -21,7 +21,6 @@ import android.bluetooth.BluetoothClass; import android.bluetooth.BluetoothCsipSetCoordinator; import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothHearingAid; -import android.bluetooth.BluetoothLeAudio; import android.bluetooth.BluetoothProfile; import android.bluetooth.BluetoothUuid; import android.content.Context; @@ -191,7 +190,7 @@ public class CachedBluetoothDevice implements Comparable<CachedBluetoothDevice> void onProfileStateChanged(LocalBluetoothProfile profile, int newProfileState) { if (BluetoothUtils.D) { Log.d(TAG, "onProfileStateChanged: profile " + profile + ", device " - + mDevice.getAlias() + ", newProfileState " + newProfileState); + + mDevice.getAnonymizedAddress() + ", newProfileState " + newProfileState); } if (mLocalAdapter.getState() == BluetoothAdapter.STATE_TURNING_OFF) { @@ -741,7 +740,7 @@ public class CachedBluetoothDevice implements Comparable<CachedBluetoothDevice> } if (BluetoothUtils.D) { - Log.d(TAG, "updating profiles for " + mDevice.getAlias()); + Log.d(TAG, "updating profiles for " + mDevice.getAnonymizedAddress()); BluetoothClass bluetoothClass = mDevice.getBluetoothClass(); if (bluetoothClass != null) Log.v(TAG, "Class: " + bluetoothClass.toString()); |