diff options
| author | Dianne Hackborn <hackbod@google.com> | 2013-08-05 19:07:41 -0700 |
|---|---|---|
| committer | Dianne Hackborn <hackbod@google.com> | 2013-08-05 19:07:41 -0700 |
| commit | 83524876e09bee871e03cd87c1f021f02228be90 (patch) | |
| tree | f94455614d0b0ab3c6c4ef17e191009071cca417 /core/java | |
| parent | 03901667db75696ccd544809e0e7bc000a99f417 (diff) | |
Whoops, not yet time to be an error.
Change-Id: I869026e1ad33b891010d556150f0b83fa97c4ac4
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/app/ContextImpl.java | 6 |
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; } } |
