diff options
author | 2024-08-22 01:00:38 +0000 | |
---|---|---|
committer | 2024-08-22 01:00:38 +0000 | |
commit | d2d6e53f1636d24a8a9f45e7e7389a7bce4f7bb1 (patch) | |
tree | 4da8c24e87a08490b08b89b07426a21c8bc5c96f | |
parent | fae69acdccae1feec0f373c5eb5565012a642694 (diff) | |
parent | 238739177cf8e7a99a9b96fe1a68da10e70b3b97 (diff) |
Merge "profcollect: increase applaunch trace frequency to 5%" into main
-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"); } } |