-
Notifications
You must be signed in to change notification settings - Fork 40
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
Error when no rollbar token for local testing #167
Comments
Thanks @mnwalker , we'll take a look at this. |
This appears to be caused by the I'm not certain if this is the best fix, but here is what I came up with. public function boot(): void
{
if ($this->stop() === true) {
return;
}
$this->app->make(RollbarLogger::class);
// Set up telemetry if it is enabled.
if (null !== Rollbar::getTelemeter()) {
$this->setupTelemetry($this->getConfigs($this->app));
}
} |
@ampersand I came to the same solution.... I made a PR for this... |
We released a fix for this from @JerryVerhoef in v8.1.1 just now. Thanks for your patience and assistance! |
Just updated composer and got a newer rollbar version which has started throwing an error constantly.
`Unresolvable dependency resolving [Parameter #0 [ array $config ]] in class Rollbar\RollbarLogger
at vendor/laravel/framework/src/Illuminate/Container/Container.php:1141
1137▕ protected function unresolvablePrimitive(ReflectionParameter $parameter)
1138▕ {
1139▕ $message = "Unresolvable dependency resolving [$parameter] in class {$parameter->getDeclaringClass()->getName()}";
1140▕
➜ 1141▕ throw new BindingResolutionException($message);
`
Have found the solution is to simply include the ROLLBAR_TOKEN value in my .env file.
But this breaks a common usecase that was previously recommended, not sure if actually by rollbar or elsewhere - which was not setting the token to avoid logging errors in development environment.
Looking into docs it seems that conditional loading is a workaround, but this is adding lots of extra complexity to something that previously just worked.
The text was updated successfully, but these errors were encountered: