Frequently Asked Questions

How do I ignore certain errors?

Return false to a Honeybadger.beforeNotify handler:

js
Honeybadger.beforeNotify(function(notice) { if (/third-party-domain/.test(notice.stack)) { return false; } });

For more information, see Reducing Noise.

Why aren't my Source Maps working?

Check out the Troubleshooting section.