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

Commit d2250b1a authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Redact DTMF digits log for production users"

parents d63b06b4 7f9f348b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2330,7 +2330,7 @@ public abstract class ConnectionService extends Service {
    }

    private void playDtmfTone(String callId, char digit) {
        Log.i(this, "playDtmfTone %s %c", callId, digit);
        Log.i(this, "playDtmfTone %s %s", callId, Log.pii(digit));
        if (mConnectionById.containsKey(callId)) {
            findConnectionForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
        } else {