summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Matías Hernández <matiashe@google.com> 2023-05-10 16:56:47 +0200
committer Matías Hernández <matiashe@google.com> 2023-05-11 09:40:46 +0000
commit866acf0ff67642cc1245afaa88083fe6943a49f0 (patch)
treec9cbd36090e1326dd9c3032e50c69a3f50b93854
parent6f0bcaf4434baa3a4964382c6826a45813e89b04 (diff)
Log post_duration_millis to statsd
Bug: 275044361 Test: statsd_testdrive Change-Id: If47e948c3d0f5c1a14374125503322ef2ceb2543
-rw-r--r--services/core/java/com/android/server/notification/NotificationRecordLoggerImpl.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/notification/NotificationRecordLoggerImpl.java b/services/core/java/com/android/server/notification/NotificationRecordLoggerImpl.java
index cd457b793390..feb75efe25f6 100644
--- a/services/core/java/com/android/server/notification/NotificationRecordLoggerImpl.java
+++ b/services/core/java/com/android/server/notification/NotificationRecordLoggerImpl.java
@@ -74,7 +74,8 @@ class NotificationRecordLoggerImpl implements NotificationRecordLogger {
notificationReported.is_ongoing,
notificationReported.is_foreground_service,
notificationReported.timeout_millis,
- notificationReported.is_non_dismissible);
+ notificationReported.is_non_dismissible,
+ notificationReported.post_duration_millis);
}
@Override