Reputation: 261
I want to show all the log cat that I wrote in my code
I have several activities , and every one has a different tag.
In the logcat I just want to show these logs I wrote in my code in these specific activities .
Any idea?
Upvotes: 1
Views: 453
Reputation: 798
You can create Log Cat Filters for each activity
Android Monitor -> Edit Filter Configuration (select from right top dropdown)
enter your tag in Log Tag and press Ok Then you can select any filter to debug as needed.
Upvotes: 0
Reputation: 1867
Check "Regex" checkbox in logcat window and than use "tag1|tag2" as a filter.
Upvotes: 1