Skip to content
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

Closed
mnwalker opened this issue Mar 10, 2025 · 5 comments · Fixed by #169
Closed

Error when no rollbar token for local testing #167

mnwalker opened this issue Mar 10, 2025 · 5 comments · Fixed by #169
Assignees
Labels
Milestone

Comments

@mnwalker
Copy link

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.

Copy link

linear bot commented Mar 10, 2025

@brianr
Copy link
Member

brianr commented Mar 10, 2025

Thanks @mnwalker , we'll take a look at this.

@ampersand
Copy link

This appears to be caused by the boot method in the RollbarServiceProvider. It now has a parameter for the RollbarLogger, but when the token is not set the register method doesn't run.

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));
        }
    }

@JerryVerhoef
Copy link

@ampersand I came to the same solution.... I made a PR for this...

@danielmorell
Copy link
Collaborator

We released a fix for this from @JerryVerhoef in v8.1.1 just now. Thanks for your patience and assistance!

@danielmorell danielmorell added this to the v8.1.1 milestone Mar 14, 2025
@danielmorell danielmorell added the PHP label Mar 14, 2025 — with Linear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
5 participants