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

Commit d5fd2b8d authored by Angela Wang's avatar Angela Wang
Browse files

Update logs for BluetoothDetailsHearingAidsPresetsController

1. Change logs in error callback from debug to warning level
2. Remove redundant logs

Bug: 334000375
Test: simple change, no tests needed
Change-Id: I0fa0d1a693d43b8f774dd87b72839370840f65a8
parent 00edf336
Loading
Loading
Loading
Loading
+8 −20
Original line number Diff line number Diff line
@@ -199,10 +199,8 @@ public class BluetoothDetailsHearingAidsPresetsController extends
    @Override
    public void onPresetSelectionFailed(@NonNull BluetoothDevice device, int reason) {
        if (device.equals(mCachedDevice.getDevice())) {
            if (DEBUG) {
                Log.d(TAG, "onPresetSelectionFailed, device: " + device.getAddress()
            Log.w(TAG, "onPresetSelectionFailed, device: " + device.getAddress()
                    + ", reason: " + reason);
            }
            mContext.getMainExecutor().execute(() -> {
                refresh();
                showErrorToast();
@@ -213,10 +211,8 @@ public class BluetoothDetailsHearingAidsPresetsController extends
    @Override
    public void onPresetSelectionForGroupFailed(int hapGroupId, int reason) {
        if (hapGroupId == mHapClientProfile.getHapGroup(mCachedDevice.getDevice())) {
            if (DEBUG) {
                Log.d(TAG, "onPresetSelectionForGroupFailed, group: " + hapGroupId
            Log.w(TAG, "onPresetSelectionForGroupFailed, group: " + hapGroupId
                    + ", reason: " + reason);
            }
            // Try to set the preset independently if group operation failed
            if (mPreference != null) {
                selectPresetIndependently(Integer.parseInt(mPreference.getValue()));
@@ -242,11 +238,8 @@ public class BluetoothDetailsHearingAidsPresetsController extends
    @Override
    public void onSetPresetNameFailed(@NonNull BluetoothDevice device, int reason) {
        if (device.equals(mCachedDevice.getDevice())) {
            if (DEBUG) {
                Log.d(TAG,
                        "onSetPresetNameFailed, device: " + device.getAddress()
            Log.w(TAG, "onSetPresetNameFailed, device: " + device.getAddress()
                    + ", reason: " + reason);
            }
            mContext.getMainExecutor().execute(() -> {
                refresh();
                showErrorToast();
@@ -257,10 +250,8 @@ public class BluetoothDetailsHearingAidsPresetsController extends
    @Override
    public void onSetPresetNameForGroupFailed(int hapGroupId, int reason) {
        if (hapGroupId == mHapClientProfile.getHapGroup(mCachedDevice.getDevice())) {
            if (DEBUG) {
                Log.d(TAG, "onSetPresetNameForGroupFailed, group: " + hapGroupId
            Log.w(TAG, "onSetPresetNameForGroupFailed, group: " + hapGroupId
                    + ", reason: " + reason);
            }
            mContext.getMainExecutor().execute(() -> {
                refresh();
                showErrorToast();
@@ -288,9 +279,6 @@ public class BluetoothDetailsHearingAidsPresetsController extends
        for (int i = 0; i < infoList.size(); i++) {
            presetNames[i] = infoList.get(i).getName();
            presetIndexes[i] = Integer.toString(infoList.get(i).getIndex());
            if (DEBUG) {
                Log.d(TAG, "loadAllPresetInfo, preset " + presetIndexes[i] + ": " + presetNames[i]);
            }
        }
        mPreference.setEntries(presetNames);
        mPreference.setEntryValues(presetIndexes);