I understand that to filter Android log messages we can use something like
adb logcat ActivityManager:I MyApp:D *:S
But, in my application, I'm using different TAGS
for different activities and I want to filter all the logs of this application only. What's the best way to do it?
Do I need to specify all the tags in the command?
Or using a common tag across the application, the only other alternative?
While looking at log messages in Eclipse, I notice that there is a column named PID
and another named Application
(contains name of app package) both of which are (obviously) same for different Tag
for a given application. That suggests that it should be possible to filter not just by Tag but by pid/package as well.