How do I write outputs to the Log in Android?

Look into android.util.Log. It lets you write to the log with various log levels, and you can specify different tags to group the output.
For example

Log.w("myApp", "no network");

will output a warning with the tag myApp and the message no network.

Leave a Comment