Logging the stack trace for system anomaly messages

With these system anomalies, you are never sure that the system/tests will be able to normally bubble up the error.

Bug: 203416429
Test: presubmit

Change-Id: Ie1d3d183cf6e56778d5c052ef7b8e0541bbc6255
(cherry picked from commit 37542c8c0e1aed42fcdbd8406f0257cd5fea48bf)
This commit is contained in:
vadimt 2021-11-19 15:20:12 -08:00 committed by Vadim Tryshev
parent 550dc8dc69
commit 499e2055a6
1 changed files with 2 additions and 2 deletions

View File

@ -544,11 +544,11 @@ public final class LauncherInstrumentation {
: 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;
}