summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2018-06-18 17:41:22 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2018-06-18 17:41:22 +0000
commitfcfd26b689fd5f2793594b4bb20dd3876eb49ab4 (patch)
tree435fa98eeabeb41a968744dca508b6749521c498 /core/java/android
parent65a654f949f58139caca412846edb73b496e8e26 (diff)
parent1ad95f06a95b30f6a345eef7a55f18096fabf53f (diff)
Merge "Improved logging on autofill authentication."
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/view/autofill/AutofillManager.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/java/android/view/autofill/AutofillManager.java b/core/java/android/view/autofill/AutofillManager.java
index e989e1af742d..8f28102016d7 100644
--- a/core/java/android/view/autofill/AutofillManager.java
+++ b/core/java/android/view/autofill/AutofillManager.java
@@ -1435,7 +1435,9 @@ public final class AutofillManager {
// set the EXTRA_AUTHENTICATION_RESULT extra, but it could cause weird results if the
// service set the extra and returned RESULT_CANCELED...
- if (sDebug) Log.d(TAG, "onAuthenticationResult(): d=" + data);
+ if (sDebug) {
+ Log.d(TAG, "onAuthenticationResult(): id= " + authenticationId + ", data=" + data);
+ }
synchronized (mLock) {
if (!isActiveLocked()) {