summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Matthew Fritze <mfritze@google.com> 2020-10-16 15:24:13 -0700
committer Matthew Fritze <mfritze@google.com> 2020-10-16 15:25:01 -0700
commite15875cc06886dc6058b13e373f1d032190ebdb6 (patch)
tree37023d8930c10b34a74aa0e47065090f9939a2a4
parenta4091c6922a677a8e18bf9feff79e66fde4ce149 (diff)
Quick log downgrade until Safetyhub APK drok
Change log status to Debug from Wtf until we can drop a safetyhub prebuilt into goog/master to handle the intent. Test: Built apk Change-Id: Ia6e89034a47a4edcde66cf847b4f0fe1ba8fb255
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBar.java3
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;
}