How can i get run adb logcat

I installed android sdk on windows. How to run adb log code using GUI? I can only get the command line version.

+4
source share
3 answers

Either run the ddms tool from your ANDROID-SDK\tools folder, or add the logcat view for the eclipse through Window -> Show View -> Other -> Logcat .

+6
source

There are not many GUIs for logcat. If you do not want to run it from the command line, you can also run it in eclipse. But even in eclipse it is pretty much like starting from the command line, but you get some colors and filters.

You can also make logcat a little easier on the eyes with a script like this: http://jsharkey.org/blog/2009/04/22/modifying-the-android-logcat-stream-for-full-color-debugging/

0
source

You can run DDMS with the logcat GUI (with color and filtering).

I am not sure how to start DDMS from Windows.

0
source

All Articles