Merge "Whoops, not yet time to be an error."
diff --git a/core/java/android/app/ContextImpl.java b/core/java/android/app/ContextImpl.java
index 60c0288..9faaace 100644
--- a/core/java/android/app/ContextImpl.java
+++ b/core/java/android/app/ContextImpl.java
@@ -1448,7 +1448,7 @@
                 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 @@
                 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 @@
             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;
             }
         }