Open
Bug 1441082
Opened 7 years ago
Updated 2 years ago
Allow filtering console by multiple expressions
Categories
(DevTools :: Console, enhancement, P3)
Tracking
(firefox60 affected)
NEW
Tracking | Status | |
---|---|---|
firefox60 | --- | affected |
People
(Reporter: sebo, Unassigned)
References
(Blocks 1 open bug)
Details
It should be possible to filter the console messages by multiple expressions. This would allow for more advanced filtering.
The simplest solution for that probably is to split the entered expressions by spaces, meaning an entered filter string of "foo bar" (without quotes) would match a logged message when it contains "foo" and "bar" anywhere and in any order.
To still allow matching the whole string, one solution would be to require wrapping it into quotes. So to match the exact expression "foo bar", you'd have to write it with the quotes.
To match quotes within an expression, they would then need to be escaped like with a backslash. So, to match the string '"foo"' (without the surrounding single quotes), you'd have to write \"foo\".
Sebastian
Updated•6 years ago
|
Product: Firefox → DevTools
Updated•6 years ago
|
Priority: -- → P3
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•