Android Log.v(), Log.d(), Log.i(), Log.w(), Log.e() – When to use each one?

The different LogCat methods are:

Log.v(); // Verbose
Log.d(); // Debug
Log.i(); // Info
Log.w(); // Warning
Log.e(); // Error

What are the appropriate situations to use each type of Logging? I know that perhaps it’s just a little bit of semantics and perhaps it doesn’t really matter, but for LogCat filtering in Android Studio and Eclipse, it would be nice to know I am using the proper methods at the appropriate times.

7 Answers
7

Leave a Comment