diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml
index 3fef7a2dffae1..03a8858d0de62 100644
--- a/core/res/res/values/config.xml
+++ b/core/res/res/values/config.xml
@@ -4304,11 +4304,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 4457e9c312d81..1c13e077c173f 100755
--- a/services/core/java/com/android/server/notification/NotificationManagerService.java
+++ b/services/core/java/com/android/server/notification/NotificationManagerService.java
@@ -5060,8 +5060,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;