Android – Filter output in logcat by tagname

androidandroid-logcatlogcat

I'm trying to filter logcat output from a real device (not an emulator) by tag name but I get all the messages which is quite a spam. I just want to read messages from browser which should be something like "browser:" or "webkit:" , but it doesn't work…
Here it is what I get:

actual output

Best Answer

use this:

adb logcat -s "TAGNAME"