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

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

Change-Id: I5a770b673d115e847e690e728c30c6ee104c2b6b
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Dinesh Yadav 2023-07-10 19:27:30 +00:00 committed by Automerger Merge Worker
commit 7cc8572f44

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