diff options
| author | 2023-05-18 17:31:33 +0000 | |
|---|---|---|
| committer | 2023-05-18 17:31:33 +0000 | |
| commit | 39d50e4d37b2f0578da0133c4ea061c5246b5a3e (patch) | |
| tree | f12d7720b031bdc6bdd7d832a11971ffa613ccaa | |
| parent | 5d67812f70cc23b2e65cd98bb416aa487a918a76 (diff) | |
| parent | 866acf0ff67642cc1245afaa88083fe6943a49f0 (diff) | |
Merge "Log post_duration_millis to statsd" into udc-dev
| -rw-r--r-- | services/core/java/com/android/server/notification/NotificationRecordLoggerImpl.java | 3 |
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 |