commit | 974f20f333bb7e914c9b97d823407461059a4943 | [log] [tgz] |
---|---|---|
author | Vinit Nayak <peanutbutter@google.com> | Tue Aug 17 01:15:45 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Aug 17 01:15:45 2021 +0000 |
tree | 47e4a5dc70ca6b1691d6ef50d4dcb6b7e5e3a1ad | |
parent | 65dc11d1b46111edabe39c1e0291921eced4d75d [diff] | |
parent | 2ad3d6b4c32e50d18b8d3410c76795954b65241a [diff] |
Merge "Add logs when clearing TaskViewId" into sc-v2-dev am: 2ad3d6b4c3 Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/15584532 Change-Id: If371285b5388c3cbf4bb8d09b7cb2d40368d32af
diff --git a/quickstep/src/com/android/quickstep/views/RecentsView.java b/quickstep/src/com/android/quickstep/views/RecentsView.java index 538e61e..d77c8ec 100644 --- a/quickstep/src/com/android/quickstep/views/RecentsView.java +++ b/quickstep/src/com/android/quickstep/views/RecentsView.java
@@ -1278,7 +1278,8 @@ + " taskId: " + getTaskIdsForTaskViewId(taskViewId)[0] + " for taskView: " + taskView + "\n"); } - Log.d(TASK_VIEW_ID_CRASH, sb.toString()); + Log.d(TASK_VIEW_ID_CRASH, "taskViewCount: " + getTaskViewCount() + + " " + sb.toString()); } mRunningTaskViewId = newRunningTaskView.getTaskViewId(); } @@ -2018,6 +2019,8 @@ * Sets the running task id, cleaning up the old running task if necessary. */ public void setCurrentTask(int runningTaskViewId) { + Log.d(TASK_VIEW_ID_CRASH, "currentRunningTaskViewId: " + mRunningTaskViewId + + " requestedTaskViewId: " + runningTaskViewId); if (mRunningTaskViewId == runningTaskViewId) { return; }