commit | edb0527dbdfe25b6d6270e12a02b98f1dda9c1f7 | [log] [tgz] |
---|---|---|
author | vadimt <vadimt@google.com> | Mon Nov 22 20:37:38 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Nov 22 20:37:38 2021 +0000 |
tree | 5ded8db0c8583a2db42425a7d33456911f4db8a7 | |
parent | 1c0bced602fe53242da56879789db6be3a82bd29 [diff] | |
parent | 499e2055a6ac4b28adcebdb934558dca8c4e5237 [diff] |
Logging the stack trace for system anomaly messages am: 499e2055a6 Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/16322469 Change-Id: I86b2c6379ce08d42fe727a6c63679136ffe428de
diff --git a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java index 2fbe460..3485dd1 100644 --- a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java +++ b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java
@@ -544,11 +544,11 @@ : TestHelpers.getSystemHealthMessage(getContext(), mTestStartTime); if (systemHealth != null) { - return message - + ";\nPerhaps linked to system health problems:\n<<<<<<<<<<<<<<<<<<\n" + message += ";\nPerhaps linked to system health problems:\n<<<<<<<<<<<<<<<<<<\n" + systemHealth + "\n>>>>>>>>>>>>>>>>>>"; } } + Log.d(TAG, "About to throw the error: " + message, new Exception()); return message; }