Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7579283b authored by Kevin Jeon's avatar Kevin Jeon Committed by Automerger Merge Worker
Browse files

Merge "Exclude dumpsys from incident in dumpstate" am: 6e1ac191 am:...

Merge "Exclude dumpsys from incident in dumpstate" am: 6e1ac191 am: faef3a82 am: be8e2361 am: 95a3f3f7

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2156679



Change-Id: I47d68a61483b1f36a51ff998168697a3d3a53e9b
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 80ddbcc9 95a3f3f7
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -47,10 +47,16 @@ enum {
#define DEFAULT_REFACTORY_PERIOD_MS (24 * 60 * 60 * 1000)  // 1 Day

// Skip these sections (for dumpstate only)
// Skip logs (1100 - 1108) and traces (1200 - 1202) because they are already in the bug report.
// Skip logs (1100 - 1108), traces (1200 - 1202), dumpsys (3000 - 3024, 3027 - 3056, 4000 - 4001)
// because they are already in the bug report.
#define SKIPPED_DUMPSTATE_SECTIONS { \
            1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, /* Logs */ \
            1200, 1201, 1202, /* Native, hal, java traces */ }
            1200, 1201, 1202, /* Native, hal, java traces */ \
            3000, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, 3010, 3011, 3012, 3013, \
            3014, 3015, 3016, 3017, 3018, 3019, 3020, 3021, 3022, 3023, 3024, 3027, 3028, 3029, \
            3030, 3031, 3032, 3033, 3034, 3035, 3036, 3037, 3038, 3039, 3040, 3041, 3042, 3043, \
            3044, 3045, 3046, 3047, 3048, 3049, 3050, 3051, 3052, 3053, 3054, 3055, 3056, 4000, \
            4001, /* Dumpsys */ }

namespace android {
namespace os {