GrepConsole
GrepConsole copied to clipboard
Change default expressions to include start/end of line
Seems like disabling the 'match only first N' option works great if you change the default expressions to be more like:
^.*WARN.*$
instead of
.*WARN.*
I do not understand the point of this
With the default expression, the match includes everything leading up to and then following the WARN message. This information is typically not part of the log entry.
typically every line is tested separately, so both regexps would do the same
That was not my experience.