So, I run logcat on my Incredible 2 connected to my computer and try to debug the web application I'm working on. Unfortunately, the device sends spam, so I do not see any of my consoles from my javascript. Does anyone know a way to filter everything except console.logs coming from the browser? I tried to start logcat with these parameters
adb logcat -s "console"
thinking that it filters out everything except the console, as the android docs say the console.logs browser is listed in this format:
Console: Hello World http://www.example.com/hello.html :82
http://developer.android.com/guide/webapps/debugging.html
Does anyone know a real trick? Thanks.
source share