TextAnalysisTool / Releases

Repository for storing release artifacts (ex: binaries).
88 stars 26 forks source link

Can we hide filtered result? #67

Closed andyhuang55 closed 5 years ago

andyhuang55 commented 5 years ago

The filtered result can be colored.
However, sometimes it is very useful to hide some garbage messages base on keyword. Could you add a new option in the filter rule to hide the result.

It may look like this: <filter enabled="y" excluding="n" description="garbage message" backColor="f0e68c" type="matches_text" case_sensitive="n" regex="n" hide="y" text="garbage" />

DavidAnson commented 5 years ago

How is this different than an excluding filter?

andyhuang55 commented 5 years ago

Thank you for your quick response.

TextAnalyseTool

Excluding filter can solve some issues, but not 100% meet what I want. Please check the attached screen as example. I would like to :

  1. hide any line contains "chatty :"
  2. highlight any line contains "ActivityThread"
  3. still show other lines which does not meet 1 & 2. So I can continue analyze other messages.
DavidAnson commented 5 years ago

This is a bit of a hack, but I think you could add a third filter to your example above that matches everything, use an excluding filter for #1, and that would get the result you want.

andyhuang55 commented 5 years ago

thanks. It works.