Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9014cda4 authored by Jakub Tyszkowski's avatar Jakub Tyszkowski
Browse files

Csip: Fix confusing error log

This is clearly not an error but a debug message

Bug: 150670922
Tag: #feature
Test: atest BluetoothInstrumentationTests
Sponsor: jpawlowski@
Change-Id: I0273d9b0493805bdcaf99dd853ad47d836209f31
parent ad28e22c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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) {