Switch some debug level logging to regular logging in the bluetooth settings for the ease of issue triage.

Change-Id: I9b73d24eb22613f6401c31352efc516f527b30d9
Bug: N/A
This commit is contained in:
Yuanru Qian
2024-01-10 06:14:02 +00:00
parent c1c500ae67
commit 0b91cdfbaa
3 changed files with 13 additions and 21 deletions

View File

@@ -183,10 +183,8 @@ public abstract class BluetoothDeviceUpdater implements BluetoothCallback,
@Override
public void onAclConnectionStateChanged(CachedBluetoothDevice cachedDevice, int state) {
if (DBG) {
Log.d(getLogTag(), "onAclConnectionStateChanged() device: " + cachedDevice.getName()
+ ", state: " + state);
}
Log.d(getLogTag(), "onAclConnectionStateChanged() device: " + cachedDevice.getName()
+ ", state: " + state);
update(cachedDevice);
}