diff options
| author | 2012-03-30 10:47:23 -0700 | |
|---|---|---|
| committer | 2012-03-30 10:47:23 -0700 | |
| commit | 0dedffd656efb74a998bf697192720c93c48994d (patch) | |
| tree | f4f3ed7be5af62166d6a49c0266d06a230884ea8 | |
| parent | 58a40a3e92f8a53ac1068f0839dec4a1707fa6fb (diff) | |
Dump the uid of a notification, for debugging.
Useful for multiuser testing.
Change-Id: I4aac8eda9b2f9c7ada07bd6a040260beb1acce87
| -rwxr-xr-x | services/java/com/android/server/NotificationManagerService.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/java/com/android/server/NotificationManagerService.java b/services/java/com/android/server/NotificationManagerService.java index 6833a57100c7..3db460107dc9 100755 --- a/services/java/com/android/server/NotificationManagerService.java +++ b/services/java/com/android/server/NotificationManagerService.java @@ -172,6 +172,7 @@ public class NotificationManagerService extends INotificationManager.Stub pw.println(prefix + " deleteIntent=" + notification.deleteIntent); pw.println(prefix + " tickerText=" + notification.tickerText); pw.println(prefix + " contentView=" + notification.contentView); + pw.println(prefix + " uid=" + uid); pw.println(prefix + " defaults=0x" + Integer.toHexString(notification.defaults)); pw.println(prefix + " flags=0x" + Integer.toHexString(notification.flags)); pw.println(prefix + " sound=" + notification.sound); |