Loading packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentInflater.java +1 −1 Original line number Diff line number Diff line Loading @@ -1392,7 +1392,7 @@ public class NotificationContentInflater implements NotificationRowContentBinder mPromotedNotificationContentExtractor.extractContent(mEntry, recoveredBuilder, mBindParams.redactionType, imageModelProvider); mLogger.logAsyncTaskProgress(logKey, "extracted promoted notification content: " + promotedContent); + (promotedContent != null ? promotedContent.toRedactedString() : null)); result.mPromotedContent = promotedContent; } Loading packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationRowContentBinderImpl.kt +1 −1 Original line number Diff line number Diff line Loading @@ -710,7 +710,7 @@ constructor( .also { logger.logAsyncTaskProgress( entry.logKey, "extracted promoted notification content: $it", "extracted promoted notification content: ${it?.toRedactedString()}", ) } } else { Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentInflater.java +1 −1 Original line number Diff line number Diff line Loading @@ -1392,7 +1392,7 @@ public class NotificationContentInflater implements NotificationRowContentBinder mPromotedNotificationContentExtractor.extractContent(mEntry, recoveredBuilder, mBindParams.redactionType, imageModelProvider); mLogger.logAsyncTaskProgress(logKey, "extracted promoted notification content: " + promotedContent); + (promotedContent != null ? promotedContent.toRedactedString() : null)); result.mPromotedContent = promotedContent; } Loading
packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationRowContentBinderImpl.kt +1 −1 Original line number Diff line number Diff line Loading @@ -710,7 +710,7 @@ constructor( .also { logger.logAsyncTaskProgress( entry.logKey, "extracted promoted notification content: $it", "extracted promoted notification content: ${it?.toRedactedString()}", ) } } else { Loading