diff options
author | Steve Howard <showard@google.com> | 2010-07-01 19:43:12 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-07-01 19:43:12 -0700 |
commit | 6d4a911e44d77deedd7b0b887be410dd6859d40a (patch) | |
tree | 4a8a90cb1d56db8351d80ae9711659fe64530ce9 /packages | |
parent | 4847e630e5e740f6bf0e87b3cccbb655346edcb7 (diff) | |
parent | 5c57e03d3dbd474deb73f51b564c4fb929a2a816 (diff) | |
download | frameworks_base-6d4a911e44d77deedd7b0b887be410dd6859d40a.zip frameworks_base-6d4a911e44d77deedd7b0b887be410dd6859d40a.tar.gz frameworks_base-6d4a911e44d77deedd7b0b887be410dd6859d40a.tar.bz2 |
am 5c57e03d: am 6ffd9ff0: Merge "Log full exception when failing to inflate notification view" into gingerbread
Merge commit '5c57e03d3dbd474deb73f51b564c4fb929a2a816'
* commit '5c57e03d3dbd474deb73f51b564c4fb929a2a816':
Log full exception when failing to inflate notification view
Diffstat (limited to 'packages')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java b/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java index 4ddd45c..07bcce7 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java @@ -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); |