am 6ffd9ff0: Merge "Log full exception when failing to inflate notification view" into gingerbread

Merge commit '6ffd9ff07733a855daeda75416cea88e7456e9d6' into gingerbread-plus-aosp

* commit '6ffd9ff07733a855daeda75416cea88e7456e9d6':
  Log full exception when failing to inflate notification view
This commit is contained in:
Steve Howard
2010-07-01 19:41:12 -07:00
committed by Android Git Automerger

View File

@ -584,7 +584,7 @@ public class StatusBarService extends Service implements CommandQueue.Callbacks
} }
if (expanded == null) { if (expanded == null) {
String ident = notification.pkg + "/0x" + Integer.toHexString(notification.id); 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; return null;
} else { } else {
content.addView(expanded); content.addView(expanded);