Scott Lounsbury
Scott Lounsbury

Reputation: 120

How to use logcat

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

Answers (2)

She Smile GM
She Smile GM

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

RobinHood
RobinHood

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.

enter image description here

If you are still not getting anything then restart your adb

Upvotes: 0

Related Questions