diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index 56052464af06e..9bff88a572327 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -4319,11 +4319,11 @@ - 1000000 + 2000000 - 2000000 + 5000000 diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index ca979f8b13cc0..cd3343bbec7bb 100755 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -5112,8 +5112,8 @@ public class NotificationManagerService extends SystemService { } if (contentViewSize >= mStripRemoteViewsSizeBytes) { mUsageStats.registerImageRemoved(pkg); - Slog.w(TAG, - "Removed too large RemoteViews on pkg: " + pkg + " tag: " + tag + " id: " + id); + Slog.w(TAG, "Removed too large RemoteViews (" + contentViewSize + " bytes) on pkg: " + + pkg + " tag: " + tag + " id: " + id); return true; } return false;