Skip to content
Devin Schulz
Menu

Historical writing · May 1, 2020

Filter Out Multiple Console Messages in Google Chrome

Learn how to filter out multiple console messages by using either regular expressions or prefixing a string with a hyphen-minus.

Google Chrome gives you the ability to filter out messages within the console by prefixing a search term with the hyphen-minus (subtraction) character -. If you want to ignore multiple entries, add a space between the search terms.

-term -analytics

Using regular expressions to filter entries also works:

-/term/ -/analytics/

Or a combination of the two:

-term -/analytics/
← Back to the archive