diff options
author | 2024-08-21 23:23:00 +0000 | |
---|---|---|
committer | 2024-08-21 23:23:00 +0000 | |
commit | 238739177cf8e7a99a9b96fe1a68da10e70b3b97 (patch) | |
tree | 6bcccf6316b8c776ea6c057dd98a0079b034081d | |
parent | ff73056526869444e003478906ee6246752ec252 (diff) |
profcollect: increase applaunch trace frequency to 5%
This is to collect more data for the applaunch trace
Change-Id: I767feceb2906a766c1b096433440e71517da72ff
-rw-r--r-- | services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java b/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java index a4dfaa1a3801..105147fe212d 100644 --- a/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java +++ b/services/profcollect/src/com/android/server/profcollect/ProfcollectForwardingService.java @@ -281,7 +281,7 @@ public final class ProfcollectForwardingService extends SystemService { if (mIProfcollect == null) { return; } - if (Utils.withFrequency("applaunch_trace_freq", 2)) { + if (Utils.withFrequency("applaunch_trace_freq", 5)) { Utils.traceSystem(mIProfcollect, "applaunch"); } } |