Do not log booleans

Change-Id: Ic132d214d226abb6b318038a3262e1c918814aa6
Fixes: 35445671
Test: manual
This commit is contained in:
Julia Reynolds
2017-02-17 08:45:04 -05:00
parent cd52950a9e
commit bef4eed2f7

View File

@@ -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) {