I have looked at the documentation for android.util.Log and I\'m not sure exactly what the difference between Log.e() and Log.wtf() is. Is one pref
Log.e()
Log.wtf()
There is a difference in severity;
Log.e() will simply log an error to the log with priority ERROR.
Log.wtf() will log an error with priority level ASSERT, and may (depending on the system configuration) send an error report and terminate the program immediately.