Reputation: 57
I am a beginner in android.I cant able to view log String which i have given in program.Is there any way to view it. Pleases guide me. Thank you for your response.
Upvotes: 1
Views: 70
Reputation: 17132
Log.i("TEST", "logcat info test");
====> Log level: info
Log.v("TEST", "logcat verbose test");
====> Log level: verbose
Log.e("TEST", "logcat error test");
====> Log level: error
...
Depending on what static method of the Log
class that you call, switch to the appropriate view perspective as shown above.
Upvotes: 1