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
This commit is contained in:
vadimt
2021-11-19 15:20:12 -08:00
parent 266b0a96f1
commit 37542c8c0e

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;
}