Remove IMS call logs that may leak PII

Bug: 160389340
Test: Check logs for PII
Change-Id: I203b37d8e643c59d69aa26097d223fc4b3f8e332
This commit is contained in:
Brad Ebinger
2020-08-12 17:28:45 -07:00
parent 89f122abe2
commit 75d127dc92

View File

@@ -203,10 +203,10 @@ public final class ImsConferenceState implements Parcelable {
for (String key : participantData.keySet()) {
sb.append(key);
sb.append("=");
if (ENDPOINT.equals(key) || USER.equals(key)) {
sb.append(Rlog.pii(TAG, participantData.get(key)));
} else {
if (STATUS.equals(key)) {
sb.append(participantData.get(key));
} else {
sb.append(Rlog.pii(TAG, participantData.get(key)));
}
sb.append(", ");
}