diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBar.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBar.java index 88a387d34f8d..f55c93580210 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBar.java @@ -3987,7 +3987,8 @@ public class StatusBar extends SystemUI implements DemoMode, PackageManager pm = mContext.getPackageManager(); ResolveInfo resolveInfo = pm.resolveActivity(emergencyIntent, /*flags=*/0); if (resolveInfo == null) { - Log.wtf(TAG, "Couldn't find an app to process the emergency intent."); + // TODO(b/171084088) Upgrade log to wtf when we have default app in main branch. + Log.d(TAG, "Couldn't find an app to process the emergency intent."); return; } |