aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNISCHAL JAIN <nischaljain@google.com>2023-04-10 07:29:34 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2023-04-10 07:29:34 +0000
commit496b95282b48cb23665a256d922125fd07b25abe (patch)
tree25e7d598509fc2a388acccc989b4c0f93356ae8b
parentee2650ea7c63d89d9880bc0e03cf60f0df5dbf0d (diff)
parent779e3323a271af937ab6c89127bd461757d69240 (diff)
downloadgs-common-496b95282b48cb23665a256d922125fd07b25abe.tar.gz
Merge "Enable gxp dumps in bugreport" into udc-dev
-rw-r--r--gxp/dump_gxp.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/gxp/dump_gxp.cpp b/gxp/dump_gxp.cpp
index 1ab4442..5a0bb3b 100644
--- a/gxp/dump_gxp.cpp
+++ b/gxp/dump_gxp.cpp
@@ -20,7 +20,8 @@
#define maxGxpDebugDumps 3
int main() {
- if(::android::base::GetBoolProperty("vendor.gxp.attach_to_bugreport", false)) {
+ /* TODO(b/277094681): Set default value to false around device beta milestone. */
+ if(::android::base::GetBoolProperty("vendor.gxp.attach_to_bugreport", true)) {
std::string outputDir = concatenatePath(BUGREPORT_PACKING_DIR, "gxp_ssrdump");
printf("Creating %s", outputDir.c_str());
if (mkdir(outputDir.c_str(), 0777) == -1) {