diff --git a/src/com/android/launcher3/allapps/AllAppsStore.java b/src/com/android/launcher3/allapps/AllAppsStore.java index 29b9e7761d..9afe06c6f7 100644 --- a/src/com/android/launcher3/allapps/AllAppsStore.java +++ b/src/com/android/launcher3/allapps/AllAppsStore.java @@ -261,12 +261,14 @@ public class AllAppsStore { writer.println(prefix + "\tAllAppsStore Apps[] size: " + mApps.length); for (int i = 0; i < mApps.length; i++) { writer.println(String.format(Locale.getDefault(), - "%s\tPackage index, name, class, and description: %d/%s:%s, %s", + "%s\tPackage index, name, class, description, bitmap flag: %d/%s:%s, %s, %s+%s", prefix, i, mApps[i].componentName.getPackageName(), mApps[i].componentName.getClassName(), - mApps[i].contentDescription)); + mApps[i].contentDescription, + Integer.toBinaryString(mApps[i].bitmap.flags), + Integer.toBinaryString(mApps[i].bitmap.creationFlags))); } } }