harini Murali
harini Murali

Reputation: 57

Viewing String given in a log in logcat - Android

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

Answers (1)

Mohammed Aouf Zouag
Mohammed Aouf Zouag

Reputation: 17132

Logcat

Logcat

Code

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

Related Questions