-
Notifications
You must be signed in to change notification settings - Fork 121
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
RollbarNotifier class is missing in Monolog handlers folder #249
Comments
I've made a further investigation on the issue. The issue happened when I was trying to upgrade Rollbar from 0.18.2 to a later version by doing
I noticed some changes in the autoload_psr4.php file under vendor\composer folder. The line
becomes
If I changed RollbarNotifier to Rollbar, then I got another error in my Symfony application:
|
This is ready for Monolog's team review in the following PR Seldaek/monolog#1042 As soon as the PR is merged to Monolog's master, simple |
It doesn't look like our PR for |
related rollbar/rollbar-php-laravel#93 |
In monolog/src/Monolog/Handler/RollbarHandler.php, the class is trying to use a non-existing class 'RollbarNotifier' as the first parameter in the constructor. This causes PHP fatal error in my Symfony application. Our Rollbar upgrade failed due to this issue.
The text was updated successfully, but these errors were encountered: