Closed szekeresa closed 6 years ago
Hey @szekeresa,
We'll take a look into this and get back to you as soon as we can.
@ArturMoczulski can you take a look at this?
I'm getting similar issues as well. ROLLBAR_LEVEL=errorr but logging anything under that shows up as that message.
This doesn't look to have been merged to master yet?
@mrtimp You're right. My bad. This has been pushed to branch laravel-5.5
which is mainline for rollbar/rollbar-php-laralve:v2.*
supporting Laravel <= 5.5
Here is the link: https://github.com/rollbar/rollbar-php-laravel/tree/laravel-5.5
Thanks @ArturMoczulski :-)
Thanks @ArturMoczulski 👍
I tried doing composer update and it's not still showing the new version? Is it possible to put it into a release?
@clin407 Change composer.json rollbar-laravel version to dev-laravel-5.5.
"rollbar/rollbar-laravel": "dev-laravel-5.5",
@clin407 I'll publish a new release as soon as it's ready
Had this same issue after upgrade to Laravel 5.7
with rollbar ^2.3.x
, also 2.4.x
. Didn't realize that there was a 3.x
version of rollbar-php-laravel
. Solved upon upgrade to 3.x
.
Hi!
I use Laravel 5.1 and rollbar-php-laravel v2.4.1.
"Unable to send messages to Rollbar API. Produced response:" message before log item... No response text, only this message.
I use other Laravel 5.1 project and rollbar-php-laravel v2.3.0 but no problem, only v2.4.1.
If "ROLLBAR_LEVEL=error" defined is .env AND run
Log::error("test")
is OK. If runLog::info("test")
then in logfile:local.ERROR: Unable to send messages to Rollbar API. Produced response:
If "ROLLBAR_LEVEL" not defined in .env then
Log::error("test")
andLog::info("test")
is OK!