-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BugSnag removes PHP errors #41
Comments
Hi @simplenotezy, thanks for the report! We will take a look. |
Same here, very annoying during development. |
There is a filter you can use to disable the Bugsnag error and exception handlers in development, which should solve this issue You can configure this by adding the following code to add_filter('bugsnag_set_error_and_exception_handlers', function () {
return false;
}); |
Expected behavior
When I install bugsnag locally, I expect it to still output errors. When I have bugsnag enabled locally, no PHP errors are shown, thus making development harder
Observed behavior
It removes PHP errors from being displayed on screen, even with WP_DEBUG turned on
Version
Latest
The text was updated successfully, but these errors were encountered: