summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2021-11-16 00:20:43 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-11-16 00:20:43 +0000
commitca0c836596088669c489ff7a5c56c95ed501913a (patch)
treec862f2af6d1aaa8da1039d6485fdeb73616d1a26
parentef4ebcd689e287c80729a9bf32340426c22a91c5 (diff)
parentb835a0bdf7866d521eab6fed01d63beb34ee5b8a (diff)
downloadBluetooth-ca0c836596088669c489ff7a5c56c95ed501913a.tar.gz
Merge "Csip: Fix confusing error log"
-rw-r--r--src/com/android/bluetooth/csip/CsipSetCoordinatorService.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/android/bluetooth/csip/CsipSetCoordinatorService.java b/src/com/android/bluetooth/csip/CsipSetCoordinatorService.java
index 7fe134524..3b8a9bb3a 100644
--- a/src/com/android/bluetooth/csip/CsipSetCoordinatorService.java
+++ b/src/com/android/bluetooth/csip/CsipSetCoordinatorService.java
@@ -599,7 +599,9 @@ public class CsipSetCoordinatorService extends ProfileService {
for (Map.Entry<Executor, IBluetoothCsipSetCoordinatorCallback> entry :
mCallbacks.get(uuid).entrySet()) {
- Log.e(TAG, " executing " + uuid + " " + entry.getKey());
+ if (DBG) {
+ Log.d(TAG, " executing " + uuid + " " + entry.getKey());
+ }
try {
executeCallback(entry.getKey(), entry.getValue(), device, groupId);
} catch (RemoteException e) {