summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2013-08-12 18:36:01 -0700
committerWinson Chung <winsonc@google.com>2013-08-12 18:37:42 -0700
commit45fa06ed1e1098eb40ce811e75fa556a82c0245d (patch)
treeb77821c3287ecb3eaf4b119d6b9bd9fd057ece67 /src
parent8481e32e5ba318d11c31317072a8a23aacd3d0b9 (diff)
downloadandroid_packages_apps_Trebuchet-45fa06ed1e1098eb40ce811e75fa556a82c0245d.tar.gz
android_packages_apps_Trebuchet-45fa06ed1e1098eb40ce811e75fa556a82c0245d.tar.bz2
android_packages_apps_Trebuchet-45fa06ed1e1098eb40ce811e75fa556a82c0245d.zip
Adding additional logging.
Change-Id: Ic4db1a3abe8b735f07e51a2d35ca92273b5f76c8
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher3/LauncherModel.java2
-rw-r--r--src/com/android/launcher3/Workspace.java1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/com/android/launcher3/LauncherModel.java b/src/com/android/launcher3/LauncherModel.java
index b08544133..e6f22d134 100644
--- a/src/com/android/launcher3/LauncherModel.java
+++ b/src/com/android/launcher3/LauncherModel.java
@@ -1434,6 +1434,7 @@ public class LauncherModel extends BroadcastReceiver {
// Ensure that all the applications that are in the system are represented on the home
// screen.
+ Log.d(TAG, "10249126 - verifyApplications(" + isUpgrade + ")");
if (!isUpgrade) {
verifyApplications();
}
@@ -1497,6 +1498,7 @@ public class LauncherModel extends BroadcastReceiver {
synchronized (sBgLock) {
for (ApplicationInfo app : mBgAllAppsList.data) {
tmpInfos = getItemInfoForComponentName(app.componentName);
+ Log.d(TAG, "10249126 - \t" + app.componentName.getPackageName() + ", " + tmpInfos.isEmpty());
if (tmpInfos.isEmpty()) {
// We are missing an application icon, so add this to the workspace
added.add(app);
diff --git a/src/com/android/launcher3/Workspace.java b/src/com/android/launcher3/Workspace.java
index 1d2027703..b39628acd 100644
--- a/src/com/android/launcher3/Workspace.java
+++ b/src/com/android/launcher3/Workspace.java
@@ -636,6 +636,7 @@ public class Workspace extends SmoothPagedView
int pageShift = 0;
for (Long id: removeScreens) {
+ Log.d(TAG, "10249126 - \tremove(" + id + ")");
CellLayout cl = mWorkspaceScreens.get(id);
mWorkspaceScreens.remove(id);
mScreenOrder.remove(id);