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

Commit b71d4556 authored by Jordan Liu's avatar Jordan Liu Committed by android-build-merger
Browse files

Merge "Add mDefaultEuiccCardId logging to locallog"

am: e3eba349

Change-Id: Ib8a9f2741e5d4dbe2f4e71ddee669fe99a035ee9
parents 9705ad65 e3eba349
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -839,8 +839,10 @@ public class UiccController extends Handler {
                    isDefaultEuiccCardIdSet = true;
                    // TODO(b/122738148) the default eUICC should not be removable
                    mDefaultEuiccCardId = convertToPublicCardId(eid);
                    log("Using eid=" + eid + " in slot=" + i + " to set mDefaultEuiccCardId="
                            + mDefaultEuiccCardId);
                    String logStr = "Using eid=" + eid + " in slot=" + i
                            + " to set mDefaultEuiccCardId=" + mDefaultEuiccCardId;
                    sLocalLog.log(logStr);
                    log(logStr);
                }
            }
        }
@@ -978,8 +980,10 @@ public class UiccController extends Handler {
                || mDefaultEuiccCardId == TEMPORARILY_UNSUPPORTED_CARD_ID) {
            // TODO(b/122738148) the default eUICC should not be removable
            mDefaultEuiccCardId = convertToPublicCardId(eid);
            log("onEidReady: eid=" + eid + " slot=" + slotId + " mDefaultEuiccCardId="
                    + mDefaultEuiccCardId);
            String logStr = "onEidReady: eid=" + eid + " slot=" + slotId + " mDefaultEuiccCardId="
                    + mDefaultEuiccCardId;
            sLocalLog.log(logStr);
            log(logStr);
        }
        ((EuiccCard) card).unregisterForEidReady(this);
    }