diff options
| author | 2017-07-18 14:05:19 +0200 | |
|---|---|---|
| committer | 2017-07-18 15:22:44 +0000 | |
| commit | 5583fbf0e693bc24a7f72dd2623b00a2ca3ef9b5 (patch) | |
| tree | a0d0bb3debcbd489fa66088ab043d6b915657b02 | |
| parent | 331a2876564e18c5b89e67d72ba594909003ef39 (diff) | |
Add log when we are trying to dismiss keyguard
Such that we can blame the app!
Test: call requestDismissKeyguard, inspect logs
Bug: 63745706
Change-Id: Ie257db2276839ba3491ee1b3cb642486331544c1
Merged-In: Ie257db2276839ba3491ee1b3cb642486331544c1
| -rw-r--r-- | services/core/java/com/android/server/am/KeyguardController.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/core/java/com/android/server/am/KeyguardController.java b/services/core/java/com/android/server/am/KeyguardController.java index a46c85170ba2..d10f9fb44f2a 100644 --- a/services/core/java/com/android/server/am/KeyguardController.java +++ b/services/core/java/com/android/server/am/KeyguardController.java @@ -144,6 +144,7 @@ class KeyguardController { failCallback(callback); return; } + Slog.i(TAG, "Activity requesting to dismiss Keyguard: " + activityRecord); mWindowManager.dismissKeyguard(callback); } |