There is a TextField \"Filter\" below the LogCat output. However, it seems to filter only the Message-column. Id like to filter Tags also. Because there are my class names.<
The Log tag field accepts Java regular expressions, so try this:
Log tag
^TAG_A$|^TAG_B$
which matches exactly those tags. You can go crazy with complicated regular expressions, if that's your idea of fun.