So I am running logcat on my Incredible 2 connected to my computer and am trying to debug a web app I am working on. Unfortunately, the device is spamming the console so I can't see any of my console.logs from my javascript. Does anyone know of a way to filter out everything but the console.logs coming from the browser? I tried running logcat with these options
adb logcat -s "console"
thinking it would filter out everything but the console, since the android docs says the the browser console.logs spit out in this format listed here:
Console: Hello World http://www.example.com/hello.html :82
http://developer.android.com/guide/webapps/debugging.html
anyone know the real trick to this? Thanks.