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

Commit fac1dba0 authored by guobing.x.xiong's avatar guobing.x.xiong Committed by Brad Ebinger
Browse files

Disable a phone number log for user build

A phone number is privacy data. Therefore, it should be prevented
from logging in user build.

Test: manual - checked log
Bug: 34582911
Change-Id: Ia8cd47f1e50019a1eff18362195308e3dd38881b
parent fca12b76
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1359,12 +1359,12 @@ public class ConnectionServiceWrapper extends ServiceBinder {

    private void logIncoming(String msg, Object... params) {
        Log.d(this, "ConnectionService -> Telecom[" + mComponentName.flattenToShortString() + "]: "
                + msg, params);
                + msg, Log.pii(params));
    }

    private void logOutgoing(String msg, Object... params) {
        Log.d(this, "Telecom -> ConnectionService[" + mComponentName.flattenToShortString() + "]: "
                + msg, params);
                + msg, Log.pii(params));
    }

    private void queryRemoteConnectionServices(final UserHandle userHandle,