diff options
author | 2017-07-18 17:27:48 +0000 | |
---|---|---|
committer | 2017-07-18 17:27:48 +0000 | |
commit | cee9fdf90c3f5c9c5a2bf93d843a84cf75ae9b46 (patch) | |
tree | 758ca03c71d8db36c1abd4e2d8479f34137bd672 | |
parent | fee9758c4b15a216eead8d5fec6ecda2231090f3 (diff) | |
parent | d72148901a5c8a30a86f88bcddeea641234d6f48 (diff) |
Merge "Add log when we are trying to dismiss keyguard"
-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 372d80df928f..58e71df3ba57 100644 --- a/services/core/java/com/android/server/am/KeyguardController.java +++ b/services/core/java/com/android/server/am/KeyguardController.java @@ -143,6 +143,7 @@ class KeyguardController { failCallback(callback); return; } + Slog.i(TAG, "Activity requesting to dismiss Keyguard: " + activityRecord); // If the client has requested to dismiss the keyguard and the Activity has the flag to // turn the screen on, wakeup the screen if it's the top Activity. |