diff options
author | 2025-01-28 19:22:58 -0800 | |
---|---|---|
committer | 2025-01-28 19:22:58 -0800 | |
commit | ddf806d91c4685fac341bde01aa83b953687c89a (patch) | |
tree | d149ea4f44ec6e7d038e3429bc4325fab2b6dac4 | |
parent | bcff4e752bb6c5539285fd0720a3358f88e56f71 (diff) | |
parent | 6479897a5f37570053e20301aa4e8d1ec3d221f8 (diff) |
Merge "Enable verbose logging on userdebug builds" into main
-rw-r--r-- | core/java/android/app/UiAutomation.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/UiAutomation.java b/core/java/android/app/UiAutomation.java index 8021ab4865af..ba8fbc121e8d 100644 --- a/core/java/android/app/UiAutomation.java +++ b/core/java/android/app/UiAutomation.java @@ -128,7 +128,7 @@ public final class UiAutomation { private static final String LOG_TAG = UiAutomation.class.getSimpleName(); private static final boolean DEBUG = false; - private static final boolean VERBOSE = false; + private static final boolean VERBOSE = Build.IS_DEBUGGABLE; private static final int CONNECTION_ID_UNDEFINED = -1; |