Filter tags in LogCat (in Android Eclipse Plug-In)

前端 未结 9 556
有刺的猬
有刺的猬 2020-12-08 15:47

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.<

9条回答
  •  [愿得一人]
    2020-12-08 16:19

    The Log tag field accepts Java regular expressions, so try this:

    ^TAG_A$|^TAG_B$
    

    which matches exactly those tags. You can go crazy with complicated regular expressions, if that's your idea of fun.

提交回复
热议问题