Reputation: 120
How do I use logcat in Eclipse? I know where it is, but it is always blank and nothing shows up in it. What could the problem be?
Upvotes: 1
Views: 8080
Reputation: 1322
did you try to print something on the logcat like.
Log.d("tagname","string you want to execute");
in your code?
then check on the logcat environment in the left side, if you have selected a filter, to be safe choose "All message(no filter)" button.
Upvotes: 5
Reputation: 10969
Look at your left panel where you will found symbol of device, click on it, and select your appropriate device or emulator, hope it will provide you info into your logcat.
If you are still not getting anything then restart
your adb
Upvotes: 0