summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2013-08-06 02:12:19 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-08-06 02:12:19 +0000
commita8b3f7b658b6cfb0372c0c2ac969be4bf68650d4 (patch)
tree4daa25c279f0c379e3cff017b3e4457a36187120 /core/java/android
parent26502916a812d1a09ee39d9e01c19fa05cf3b9f2 (diff)
parent83524876e09bee871e03cd87c1f021f02228be90 (diff)
Merge "Whoops, not yet time to be an error."
Diffstat (limited to 'core/java/android')
-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;
}
}