[BugFix]: Remove the android property used by GXP debug dump [RESTRICT AUTOMERGE] am: 3f904fffac am: 7cc8572f44

Original change: https://googleplex-android-review.googlesource.com/c/device/google/gs-common/+/23736622

Change-Id: If3357eacfab71d7194bc2ca0392c8bd45cd88ed7
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Dinesh Yadav 2023-07-10 20:15:02 +00:00 committed by Automerger Merge Worker
commit a647b1aaf8

View file

@ -21,7 +21,8 @@
int main() {
/* TODO(b/277094681): Set default value to false around device beta milestone. */
if(::android::base::GetBoolProperty("vendor.gxp.attach_to_bugreport", true)) {
/* TODO(b/288368306): Create an android property for enabling/disabling
* bugreport collection for gxp */
std::string outputDir = concatenatePath(BUGREPORT_PACKING_DIR, "gxp_ssrdump");
printf("Creating %s", outputDir.c_str());
if (mkdir(outputDir.c_str(), 0777) == -1) {
@ -31,7 +32,6 @@ int main() {
dumpLogs("/data/vendor/ssrdump/coredump", outputDir.c_str(), maxGxpDebugDumps, "coredump_gxp_");
dumpLogs("/data/vendor/ssrdump", outputDir.c_str(), maxGxpDebugDumps, "crashinfo_gxp_");
}
return 0;
}