You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 11, 2023. It is now read-only.
If the _init function is called more than once, previous handlers are not cleaned. I understand that the _init should not be called twice, but apparently somewhere during the autoloading process by Fuel, it does happen.
I fixed this by adding the following lines to the _init() function:
if(!is_null(static::$monolog)) {
return;
}
I understand this is not ideal, but without this fix, my Sentry handler was not called anymore...