This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
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.
If the monolog instance exists, and the _init function is called more than once,
any added handlers through pushHandler (thus inside $handlers array) are lost
because a new monolog instance is created. This check prevents that.
The fact that
_init
is called twice is something I do not fully understand. The reason I found this behaviour is because in a seperate custom package, I was calling\Log::instance()->pushHandler
and when debugging I found that the_init
was called. Both from my package as from inside fuel. The flow was:\Log
instance from inside my custom package + add a Handler\Log
instance is created again -> my Handler is lostStreamHandler
, but my custom handler is not calledI hope you can accept this fix or explain to me why it should behave like this - or how I should solve it in another way.
Thank you!
@pierot, @rob-bar, @jeroendp