Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
[Debug][ErrorHandler] Preserve our error handler when a logger sets another one#29869
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
nicolas-grekas merged 1 commit intosymfony:3.4fromfancyweb:always-preserve-error-handler-when-loggingJan 25, 2019
Merged
[Debug][ErrorHandler] Preserve our error handler when a logger sets another one#29869
nicolas-grekas merged 1 commit intosymfony:3.4fromfancyweb:always-preserve-error-handler-when-loggingJan 25, 2019
Uh oh!
There was an error while loading.Please reload this page.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
2c73341 to6af95d4CompareMember
nicolas-grekas commentedJan 24, 2019
Nice finding, LGTM. Could you please have a look at HHVM tests, are they related? (rebasing and checking other PRs on 3.4 might help decide). |
6af95d4 toa40a292Comparea40a292 tob979fffCompareContributorAuthor
fancyweb commentedJan 24, 2019
Failures were actually related. Turns out this bug does not exist on the tested HHVM version so we must not readd the error handler. |
nicolas-grekas approved these changesJan 24, 2019
Member
nicolas-grekas commentedJan 25, 2019
Good catch, thanks@fancyweb. |
nicolas-grekas added a commit that referenced this pull requestJan 25, 2019
…gger sets another one (fancyweb)This PR was merged into the 3.4 branch.Discussion----------[Debug][ErrorHandler] Preserve our error handler when a logger sets another one| Q | A| ------------- | ---| Branch? | 3.4| Bug fix? | yes| New feature? | no| BC breaks? | no| Deprecations? | no| Tests pass? | yes| Fixed tickets | -| License | MIT| Doc PR | -When logging errors handled by the `ErrorHandler::handleError()` method, the logger can temporarily set its own custom error handler. This is for example the case of `Monolog` in the `StreamHandler` class (cfhttps://github.com/Seldaek/monolog/blob/ebb804e432e8fe0fe96828f30d89c45581d36d07/src/Monolog/Handler/StreamHandler.php#L101).However, when the previous error handler is restored by the logger, it "skips" the real previous handler (the `ErrorHandler::handleError()` one) in the pile and goes back directly to the one before. I guess this is because the `restore_error_handler()` call is technically done in the error handler itself, so it logically restore it to the one before and not to itself.Here is an easy small example that shows the PHP behavior :https://3v4l.org/4OZNZThe only solution I have found to fix it is to set our error handler everytime an error is logged.Here are the things I discovered while trying to find a cleaner fix :- Setting the same error handler in the error handler itself doesn't actually add it to the pile. This is why adding a check is useless.- Checking if the logger modified the error handler is impossible anyway : to get the current error handler, you need to set a new one temporarirly and then revert it. However, when you revert it by calling `restore_error_handler()` you end up having the same problem you are trying to fix...- Also trying to get the current error handler in the error handler itself will return NULL if it is itself.Commits-------b979fff [Debug][ErrorHandler] Preserve our error handler when a logger set another one
This was referencedJan 29, 2019
Merged
Merged
Merged
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading.Please reload this page.
When logging errors handled by the
ErrorHandler::handleError()method, the logger can temporarily set its own custom error handler. This is for example the case ofMonologin theStreamHandlerclass (cfhttps://github.com/Seldaek/monolog/blob/ebb804e432e8fe0fe96828f30d89c45581d36d07/src/Monolog/Handler/StreamHandler.php#L101).However, when the previous error handler is restored by the logger, it "skips" the real previous handler (the
ErrorHandler::handleError()one) in the pile and goes back directly to the one before. I guess this is because therestore_error_handler()call is technically done in the error handler itself, so it logically restore it to the one before and not to itself.Here is an easy small example that shows the PHP behavior :https://3v4l.org/4OZNZ
The only solution I have found to fix it is to set our error handler everytime an error is logged.
Here are the things I discovered while trying to find a cleaner fix :
restore_error_handler()you end up having the same problem you are trying to fix...