I searched through whole internet but I still don't understand how I need to set up logCat what it would run. Could someone help with this?
Asked
Active
Viewed 569 times
2 Answers
3
In the main menu, choose Window > Open Perspective > Other. In the dialog that appears, choose DDMS. LogCat will be the tool at the bottom of that perspective (by default -- you can reposition it).

CommonsWare
- 986,068
- 189
- 2,389
- 2,491
0
Logcat usage is tagbased. You develop your Application and when you want to log something you say:
Log.i("CUSTOM", "getting old data!");
then you go into Logcat and define a Custom Filter, there is an option to filter by TAG. This is the first parameter on your Log.i call, so for example you define a filter for your "CUSTOM"-Tag. Now you have a new tab in your logcat that holds all your CUSTOM-logmessages.
hope that helps

Michele
- 6,126
- 2
- 41
- 45