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

Commit 0a13bc8c authored by Hongming Jin's avatar Hongming Jin Committed by Android (Google) Code Review
Browse files

Merge "Add callstack back into trace for AccessibilityInteractionClient."

parents 724e2e21 e7f82da5
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1328,6 +1328,8 @@ public final class AccessibilityInteractionClient
    private void logTraceClient(
            IAccessibilityServiceConnection connection, String method, String params) {
        logTrace(connection, method, params, Binder.getCallingUid(),
                Collections.emptyList(), null, FLAGS_ACCESSIBILITY_INTERACTION_CLIENT);
                Arrays.asList(Thread.currentThread().getStackTrace()),
                new HashSet<String>(Arrays.asList("getStackTrace", "logTraceClient")),
                FLAGS_ACCESSIBILITY_INTERACTION_CLIENT);
    }
}