Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7e59adc0 authored by Julia Tuttle's avatar Julia Tuttle
Browse files

[AOD RONs] Redact notif content logged by inflation code too

Bug: 402929218
Flag: com.android.systemui.aod_ui_rich_ongoing
Test: manual: post AOD RON, check NotifInflationLog for app name
Change-Id: I3e76a6eb9754b9950912ed62115608ea00e7115d
parent 250a0eda
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1391,7 +1391,7 @@ public class NotificationContentInflater implements NotificationRowContentBinder
                        mPromotedNotificationContentExtractor.extractContent(mEntry,
                                recoveredBuilder, imageModelProvider);
                mLogger.logAsyncTaskProgress(logKey, "extracted promoted notification content: "
                        + promotedContent);
                        + (promotedContent != null ? promotedContent.toRedactedString() : null));

                result.mPromotedContent = promotedContent;
            }
+1 −1
Original line number Diff line number Diff line
@@ -704,7 +704,7 @@ constructor(
                        .also {
                            logger.logAsyncTaskProgress(
                                entry.logKey,
                                "extracted promoted notification content: $it",
                                "extracted promoted notification content: ${it?.toRedactedString()}",
                            )
                        }
                } else {