diff options
| author | 2025-02-14 16:58:50 -0800 | |
|---|---|---|
| committer | 2025-02-14 16:59:31 -0800 | |
| commit | 30814f13423be5138bd8e7d2cebf544a08a72abc (patch) | |
| tree | 2f4ac6c6779fe32116179ef0d456a5d068f6dbb5 | |
| parent | 376f1537cb2ca03cf6464a0c4ec28b14fc82e4d1 (diff) | |
Always keep UI automation verbose logging off.
These logs has regressed performance metrics, so
disabling them, we can enable these when debugging
locally or with abtd.
Fix: 395956563
Change-Id: I015fe7a7125afbeca1bfb120ce71734b491ebff4
Test: build
Flag: EXEMPT bug fix
| -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 464bcc025d92..361532613047 100644 --- a/core/java/android/app/UiAutomation.java +++ b/core/java/android/app/UiAutomation.java @@ -122,7 +122,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 = Build.IS_DEBUGGABLE; + private static final boolean VERBOSE = false; private static final int CONNECTION_ID_UNDEFINED = -1; |