Merge "Log full exception when failing to inflate notification view" into gingerbread

This commit is contained in:
Steve Howard
2010-07-01 19:38:48 -07:00
committed by Android (Google) Code Review

View File

@@ -584,7 +584,7 @@ public class StatusBarService extends Service implements CommandQueue.Callbacks
}
if (expanded == null) {
String ident = notification.pkg + "/0x" + Integer.toHexString(notification.id);
Slog.e(TAG, "couldn't inflate view for notification " + ident);
Slog.e(TAG, "couldn't inflate view for notification " + ident, exception);
return null;
} else {
content.addView(expanded);