-
-
Notifications
You must be signed in to change notification settings - Fork 62
Description
Is your feature request related to a problem? Please describe.
When the grep output contains some java exception stack traces, it only display the first line.
Describe the solution you'd like
Add an option to support multiline for grep output to display whole log message.
Additional context
For example, I want to grep the log with text Caused by, it only displayed the matched one line.
The stack traces are multiline as shown below:

I actually want to see the whole message of a log item even if the matched text is in the middle of the whole log message. Just like the multiline option in highlight settings.
Another example:
Sometimes I want to filter logs by log level. But grep the text [ERROR ] only display the first line. This is a very useful function to quickly check log messages for a specific level.