Skip to content Skip to sidebar Skip to footer

Getting Information From Logcat Window

How to get information from the LogCat window?

Solution 1:

If you add something like Log.v("tag", "value"); in your code, You can see that in LogCat window.

Solution 2:

You can click Windows ->ShowView->Other-> Android ->Logcat

Refer to Images 1 and Images 2

enter image description here

and enter image description here

and in the code use v -> Verbose and d -> Debug and E-> Error I -> Information, W -> Warning

Post a Comment for "Getting Information From Logcat Window"