summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/java/android/app/ContextImpl.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/app/ContextImpl.java b/core/java/android/app/ContextImpl.java
index 60c028870d6a..9faaacec4240 100644
--- a/core/java/android/app/ContextImpl.java
+++ b/core/java/android/app/ContextImpl.java
@@ -1448,7 +1448,7 @@ class ContextImpl extends Context {
if (getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.KEY_LIME_PIE) {
IllegalArgumentException ex = new IllegalArgumentException(
"Service Intent must be explicit: " + service);
- Log.wtf(TAG, "This will become an error", ex);
+ Log.e(TAG, "This will become an error", ex);
//throw ex;
}
}
@@ -1480,7 +1480,7 @@ class ContextImpl extends Context {
if (getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.KEY_LIME_PIE) {
IllegalArgumentException ex = new IllegalArgumentException(
"Service Intent must be explicit: " + service);
- Log.wtf(TAG, "This will become an error", ex);
+ Log.e(TAG, "This will become an error", ex);
//throw ex;
}
}
@@ -1523,7 +1523,7 @@ class ContextImpl extends Context {
if (getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.KEY_LIME_PIE) {
IllegalArgumentException ex = new IllegalArgumentException(
"Service Intent must be explicit: " + service);
- Log.wtf(TAG, "This will become an error", ex);
+ Log.e(TAG, "This will become an error", ex);
//throw ex;
}
}