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

Commit 8bbf0710 authored by Tom Hsu's avatar Tom Hsu
Browse files

Fix incorrect log in SatelliteCarrierSettingUtils

The log is saying "Error to getAttachRestrictionReasonsForCarrier", even when it succeeds.

Flag: EXEMPT log description modification
Fix: 416382807
Test: make pass
Change-Id: I81b9457fb76356e8943d5aa4e08370bdf540d163
parent 164a958a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ public class SatelliteCarrierSettingUtils {
            try {
                Set<Integer> restrictionReason =
                        mSatelliteManager.getAttachRestrictionReasonsForCarrier(subId);
                Log.d(TAG, "Error to getAttachRestrictionReasonsForCarrier : " + restrictionReason);
                Log.d(TAG, "getAttachRestrictionReasonsForCarrier : " + restrictionReason);
                return restrictionReason;
            } catch (SecurityException | IllegalStateException | IllegalArgumentException e) {
                Log.d(TAG, "Error to getAttachRestrictionReasonsForCarrier : " + e);