diff options
author | 2024-11-27 10:02:28 -0800 | |
---|---|---|
committer | 2024-11-27 10:07:15 -0800 | |
commit | f0d51dde83d466c1a42512a895481f6487517a9d (patch) | |
tree | 5e067e34513c61bb04a314d0eb59404be018fd10 /ravenwood/runtime-common-src | |
parent | e11147f7ff3ab692421a16f0d90e34274ee4f362 (diff) |
Change ravenwood default log level to verbose
- Otherwise, it'll be hard to debug issues from the log from the CI server.
- Also change all ravenwood related log to a "Ravenwood" tag, to make it easy
to filter out ravenwood log.
Bug: 380949304
Test: $ANDROID_BUILD_TOP/frameworks/base/ravenwood/scripts/run-ravenwood-tests.sh -s
Test: ANDROID_LOG_TAGS='Ravenwood:s' atest -t RavenwoodBivalentTest
Flag: EXEMPT host test change only
Change-Id: Ia114d094256b365beea55c905766a4602852c742
Diffstat (limited to 'ravenwood/runtime-common-src')
-rw-r--r-- | ravenwood/runtime-common-src/com/android/ravenwood/common/RavenwoodCommonUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ravenwood/runtime-common-src/com/android/ravenwood/common/RavenwoodCommonUtils.java b/ravenwood/runtime-common-src/com/android/ravenwood/common/RavenwoodCommonUtils.java index 2a04d4469ef4..a967a3fff0d7 100644 --- a/ravenwood/runtime-common-src/com/android/ravenwood/common/RavenwoodCommonUtils.java +++ b/ravenwood/runtime-common-src/com/android/ravenwood/common/RavenwoodCommonUtils.java @@ -33,7 +33,7 @@ import java.util.Arrays; import java.util.function.Supplier; public class RavenwoodCommonUtils { - private static final String TAG = "RavenwoodCommonUtils"; + public static final String TAG = "Ravenwood"; private RavenwoodCommonUtils() { } |