"Error reporting WTF" in logcat error

android, logcat

Solution

It may be referring to the `wtf()` function in `android.util.Log`. Although clearly named for its comical effect, "wtf" is an abbreviation for "What a Terrible Failure" in the Android world, although it's only supposed to be used in error cases that should never really happen in real life usage scenarios.

See here for more information: http://developer.android.com/reference/android/util/Log.html#wtf%28java.lang.String,%20java.lang.Throwable%29

Problem

While running the android project, I got the error with text "Error reporting WTF" The logcat shows: ``` Level Tag Text E AndroidRuntime "Error reporting WTF" ``` What does this error mean?

Original source

Related problems