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

Commit 46bc3fd5 authored by Tyler Gunn's avatar Tyler Gunn
Browse files

Revert "Disable a phone number log for user build"

This is causing format exceptions.

This reverts commit fac1dba0.

Change-Id: Ic13fd861c5195bd19533393ee5ff4a4c69bc816b
parent b77f30fa
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1356,12 +1356,12 @@ public class ConnectionServiceWrapper extends ServiceBinder {

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

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

    private void queryRemoteConnectionServices(final UserHandle userHandle,