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

Commit d24a9000 authored by Julia Reynolds's avatar Julia Reynolds Committed by Android (Google) Code Review
Browse files

Merge "Add more logging around remoteview limits"

parents 277b29ee 05b8de85
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -5014,12 +5014,13 @@ public class NotificationManagerService extends SystemService {
        final int contentViewSize = contentView.estimateMemoryUsage();
        if (contentViewSize > mWarnRemoteViewsSizeBytes
                && contentViewSize < mStripRemoteViewsSizeBytes) {
            Slog.w(TAG, "RemoteViews too large on tag: " + tag + " id: " + id
            Slog.w(TAG, "RemoteViews too large on pkg: " + pkg + " tag: " + tag + " id: " + id
                    + " this might be stripped in a future release");
        }
        if (contentViewSize >= mStripRemoteViewsSizeBytes) {
            mUsageStats.registerImageRemoved(pkg);
            Slog.w(TAG, "Removed too large RemoteViews on tag: " + tag + " id: " + id);
            Slog.w(TAG,
                    "Removed too large RemoteViews on pkg: " + pkg + " tag: " + tag + " id: " + id);
            return true;
        }
        return false;