Frequently asked questions
How do I ignore certain errors?
Section titled “How do I ignore certain errors?”Return false to a Honeybadger.beforeNotify handler:
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?
Section titled “Why aren’t my Source Maps working?”Check out the Troubleshooting section.