From 0ace11a2b0da4629d5aefceb36e12c697725d7d1 Mon Sep 17 00:00:00 2001 From: Joe Onorato Date: Thu, 5 Nov 2009 15:41:27 -0500 Subject: [PATCH] Add logging to launcher2 to help diagnose 2239265 since QA keeps reassigning it to me without providing more detailed steps to reproduce. --- src/com/android/launcher2/AllAppsView.java | 1 + src/com/android/launcher2/LauncherModel.java | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/com/android/launcher2/AllAppsView.java b/src/com/android/launcher2/AllAppsView.java index 7cba4bbee4..5a315dd787 100644 --- a/src/com/android/launcher2/AllAppsView.java +++ b/src/com/android/launcher2/AllAppsView.java @@ -564,6 +564,7 @@ public class AllAppsView extends RSSurfaceView if (index < 0) { index = -(index+1); } + Log.d(TAG, "Adding app '" + item + "' at index " + index + " mRollo=" + mRollo); mAllAppsList.add(index, item); if (mRollo != null) { mRollo.addApp(index, item); diff --git a/src/com/android/launcher2/LauncherModel.java b/src/com/android/launcher2/LauncherModel.java index e10396123a..de4f35b53e 100644 --- a/src/com/android/launcher2/LauncherModel.java +++ b/src/com/android/launcher2/LauncherModel.java @@ -269,6 +269,8 @@ public class LauncherModel extends BroadcastReceiver { * ACTION_PACKAGE_CHANGED. */ public void onReceive(Context context, Intent intent) { + Log.d(TAG, "onReceive intent=" + intent); + // Use the app as the context. context = mApp; @@ -332,6 +334,7 @@ public class LauncherModel extends BroadcastReceiver { final Callbacks callbacks = mCallbacks != null ? mCallbacks.get() : null; if (callbacks == null) { + Log.d(TAG, "nobody to tell about the new app"); return; }