We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 742bf2f commit 785a95eCopy full SHA for 785a95e
docs/config.rst
@@ -102,12 +102,14 @@ Those configuration options are documented below:
102
something other than your application, or errors that you're
103
completely not interested in. `ignoreErrors` is a list of these
104
messages to be filtered out before being sent to Sentry as either
105
- regular expressions or strings.
+ regular expressions or strings. When using strings, they'll partially
106
+ match the messages, so if you need to achieve an exact match, use
107
+ RegExp patterns instead.
108
109
.. code-block:: javascript
110
111
{
- ignoreErrors: ['fb_xd_fragment']
112
+ ignoreErrors: ['fb_xd_fragment', /^Exact Match Message$/]
113
}
114
115
.. describe:: ignoreUrls
0 commit comments