diff options
| author | 2024-05-17 03:14:31 +0000 | |
|---|---|---|
| committer | 2024-05-17 03:14:31 +0000 | |
| commit | ff577bfbaa771c0601cd0ebdddf1159374c63bd3 (patch) | |
| tree | 9a00995502029811fa61a3621bdf24df21049c24 | |
| parent | 710ee5634d7514e6bba6c6092cebb486b83ee5cc (diff) | |
| parent | 962b5ba6a1a4cc8db585753772b068c408d72bfc (diff) | |
Merge "Use wtf and log originalComponentName to help debugging." into main
| -rw-r--r-- | services/core/java/com/android/server/pm/Settings.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/pm/Settings.java b/services/core/java/com/android/server/pm/Settings.java index 41d6288d4411..8d6d774a9959 100644 --- a/services/core/java/com/android/server/pm/Settings.java +++ b/services/core/java/com/android/server/pm/Settings.java @@ -2142,7 +2142,8 @@ public final class Settings implements Watchable, Snappable, ResilientAtomicFile ComponentName unflattenOriginalComponentName = ComponentName.unflattenFromString( originalComponentName); if (unflattenOriginalComponentName == null) { - Slog.d(TAG, "Incorrect component name from the attributes"); + Slog.wtf(TAG, "Incorrect component name: " + originalComponentName + + " from the attributes"); continue; } |