BeniaminoBaggins
BeniaminoBaggins

Reputation: 12433

Hide errors containing a specific word from Chrome developer console

I need to hide some errors (that contain "props.style"):

enter image description here

enter image description here

that are contaminating my developer console. I figure hiding them by the word will be best. I have tried adding a few regex patterns on SO such as this one, to the filter, but they seem to hide all errors. How do I hide just the errors with "props.style" in them?

Upvotes: 7

Views: 1632

Answers (1)

Kayce Basques
Kayce Basques

Reputation: 25897

Use the negative filter: -props.style

Regular expressions also work: -/props\.style/

Upvotes: 12

Related Questions