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

Commit a9831fcd authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Adding additional log to track down crash" into sc-v2-dev

parents 325943b3 b86d3723
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -292,6 +292,7 @@ public class RecentTasksController implements TaskStackListenerCallback,
         * Invalidates this instance, preventing future calls from updating the controller.
         */
        void invalidate() {
            Slog.d("b/206648922", "invalidating controller: " + mController);
            mController = null;
        }

@@ -317,7 +318,8 @@ public class RecentTasksController implements TaskStackListenerCallback,
                    (controller) -> out[0] = controller.getRecentTasks(maxNum, flags, userId)
                            .toArray(new GroupedRecentTaskInfo[0]),
                    true /* blocking */);
            Slog.d("b/206648922", "getRecentTasks(" + maxNum + "): " + out[0]);
            Slog.d("b/206648922", "getRecentTasks(" + maxNum + "): " + out[0]
                    + " mController=" + mController);
            return out[0];
        }
    }