CodeCamper
CodeCamper

Reputation: 6984

LogCat in Eclipse Android Debugging Exclusion Tag

How do I create an exclusion tag in eclipse. I want all tags beginning with Media to be omitted from LogCat in Eclipse. Because my program has a lot of different tags but everything beginning with media I want to go away. I can only tell it specifically what I want to see but there seems to be no way to tell it what I do not want to see.

Upvotes: 0

Views: 57

Answers (1)

Ostap
Ostap

Reputation: 320

This could be a related to How to filter out a tagname in Eclipse LogCat viewer.

In general, you want to use Java regular expressions to filter out/select some particular log lines. Example: ^(?!(media)).*$

Upvotes: 2

Related Questions