Logging
Log.wtf - “What a Terrible Failure” (treated as an extreme ERROR)
Log.e - ERROR
Log.w - WARNING
Log.i - INFO
Log.d - DEBUG
Log.v - VERBOSE
As stated, these log messages can be read via logcat. Logcat is Android’s logging system and logs everything from system messages to stack traces. Applications can write to logcat by using the ...