diff options
author | 2023-02-10 21:24:04 +0000 | |
---|---|---|
committer | 2023-02-10 21:24:04 +0000 | |
commit | d2250b1a4a409574f726d335caa196185a800510 (patch) | |
tree | 34f67478f5a4c49c94b46e601cba3a185f556a58 | |
parent | d63b06b429b0a1a78e56b1016da96d46b4c2496d (diff) | |
parent | 7f9f348bcd064271e4c0aa0fc57a70a403fc1cb0 (diff) |
Merge "Redact DTMF digits log for production users"
-rwxr-xr-x | telecomm/java/android/telecom/ConnectionService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/telecomm/java/android/telecom/ConnectionService.java b/telecomm/java/android/telecom/ConnectionService.java index bce6809ef32d..6afc40064961 100755 --- a/telecomm/java/android/telecom/ConnectionService.java +++ b/telecomm/java/android/telecom/ConnectionService.java @@ -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 { |