Merge "Redact DTMF digits log for production users"

This commit is contained in:
Treehugger Robot
2023-02-10 21:24:04 +00:00
committed by Gerrit Code Review

View File

@@ -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 {