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

Commit 8e848662 authored by Jinyoung Jeong's avatar Jinyoung Jeong
Browse files

Logged Euicc eid in IccCardState

Security Report - ID: Logged Euicc eid in IccCardState

Bug: b/220735859
Test: Manual testing
and verified log from both debug and non-debug build

Change-Id: I5cee1b6e62237560c24586507179ad87b300992d
parent 0b92ff82
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
@@ -20,6 +20,9 @@ import android.compat.annotation.UnsupportedAppUsage;
import android.os.Build;
import android.os.Build;
import android.telephony.SubscriptionInfo;
import android.telephony.SubscriptionInfo;


import com.android.internal.telephony.util.TelephonyUtils;
import com.android.telephony.Rlog;

/**
/**
 * See also RIL_CardStatus in include/telephony/ril.h
 * See also RIL_CardStatus in include/telephony/ril.h
 *
 *
@@ -170,7 +173,7 @@ public class IccCardStatus {


        sb.append(",atr=").append(atr);
        sb.append(",atr=").append(atr);
        sb.append(",iccid=").append(SubscriptionInfo.givePrintableIccid(iccid));
        sb.append(",iccid=").append(SubscriptionInfo.givePrintableIccid(iccid));
        sb.append(",eid=").append(eid);
        sb.append(",eid=").append(Rlog.pii(TelephonyUtils.IS_DEBUGGABLE, eid));
        sb.append(",SlotPortMapping=").append(mSlotPortMapping);
        sb.append(",SlotPortMapping=").append(mSlotPortMapping);


        sb.append("}");
        sb.append("}");