fix 2542590 add more logging when launching app fails

Change-Id: I5a1fa261c6e67eb7afb661de39e35ce43e2caa59
This commit is contained in:
Joe Onorato
2010-03-25 09:47:45 -07:00
parent 509cd6a656
commit f984e853f2
7 changed files with 14 additions and 11 deletions

View File

@@ -60,10 +60,11 @@ public class LiveFolder extends Folder {
Uri uri = baseIntent.getData();
uri = uri.buildUpon().appendPath(Long.toString(holder.id)).build();
intent.setData(uri);
mLauncher.startActivitySafely(intent);
mLauncher.startActivitySafely(intent, "(position=" + position + ", id=" + id + ")");
}
} else if (holder.intent != null) {
mLauncher.startActivitySafely(holder.intent);
mLauncher.startActivitySafely(holder.intent,
"(position=" + position + ", id=" + id + ")");
}
}