diff options
| author | 2012-04-03 09:59:55 -0700 | |
|---|---|---|
| committer | 2012-04-03 09:59:55 -0700 | |
| commit | 15001eafa290e70b29a487ec196d99bf284fa103 (patch) | |
| tree | d1ece2413cff4b52ec0b51730208695ac369b26a | |
| parent | 4a727e342134f409c2cf7cf2f77dbe9c15128337 (diff) | |
| parent | 0dedffd656efb74a998bf697192720c93c48994d (diff) | |
Merge "Dump the uid of a notification, for debugging."
| -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); |