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

Commit 592de6e3 authored by Tim Murray's avatar Tim Murray Committed by Automerger Merge Worker
Browse files

Merge "fix app binder tracing on userdebug builds" into rvc-dev am: 52d70eaa...

Merge "fix app binder tracing on userdebug builds" into rvc-dev am: 52d70eaa am: bc6fda94 am: 648a549d

Change-Id: Ic035a681ea95fc903109163b0a7e189b0887849c
parents cac1dbf4 648a549d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6420,7 +6420,7 @@ public final class ActivityThread extends ClientTransactionHandler {
        // Allow binder tracing, and application-generated systrace messages if we're profileable.
        boolean isAppProfileable = data.appInfo.isProfileableByShell();
        Trace.setAppTracingAllowed(isAppProfileable);
        if (isAppProfileable && data.enableBinderTracking) {
        if ((isAppProfileable || Build.IS_DEBUGGABLE) && data.enableBinderTracking) {
            Binder.enableTracing();
        }