Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 48647406 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Allow extra keyguard logs to be enabled via adb" into sc-v2-dev am:...

Merge "Allow extra keyguard logs to be enabled via adb" into sc-v2-dev am: c5e184b5 am: b287cd51

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16681376

Change-Id: I8e072b4bf7b31826d629fb0d6f9ffe790d5f225d
parents c2b9af3a b287cd51
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@

package com.android.keyguard;

import android.util.Log;

/**
 * Defines constants for the Keyguard.
 */
@@ -25,7 +27,7 @@ public class KeyguardConstants {
     * Turns on debugging information for the whole Keyguard. This is very verbose and should only
     * be used temporarily for debugging.
     */
    public static final boolean DEBUG = false;
    public static final boolean DEBUG = Log.isLoggable("Keyguard", Log.DEBUG);
    public static final boolean DEBUG_SIM_STATES = true;
    public static final boolean DEBUG_BIOMETRIC_WAKELOCK = true;
}