diff options
| author | 2017-02-17 08:45:04 -0500 | |
|---|---|---|
| committer | 2017-02-17 09:49:16 -0500 | |
| commit | bef4eed2f7814b072e9efbb07e36bf1817d0415f (patch) | |
| tree | 5c008d411c1309f9f21e6710614a63e9a5f27ff5 | |
| parent | cd52950a9ee68ff45e02921de306d07926110a78 (diff) | |
Do not log booleans
Change-Id: Ic132d214d226abb6b318038a3262e1c918814aa6
Fixes: 35445671
Test: manual
| -rw-r--r-- | services/core/java/com/android/server/notification/NotificationManagerService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index f2b55640f20f..ff42527d7b6a 100644 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -4195,7 +4195,7 @@ public class NotificationManagerService extends SystemService { .setCategory(MetricsEvent.NOTIFICATION_SNOOZED) .setType(MetricsEvent.TYPE_CLOSE) .addTaggedData(MetricsEvent.NOTIFICATION_SNOOZED_CRITERIA, - snoozeCriterionId == null ? false : true)); + snoozeCriterionId == null ? 0 : 1)); cancelNotificationLocked(r, false, REASON_SNOOZED); updateLightsLocked(); if (snoozeCriterionId != null) { |