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
Hi All!
I need to send Debug & Info messages through this bundle (Its possible to do it with the SDK of rollbar)
But in the RollBarHandlerFactory of this bundle set the minimum level in ERROR. It means that i cant send any event below error level (ie info / debug levels)
So $logger->info('INFO MESSAGE') wont work :S
See the code /** * Create RollbarHandler * * @return RollbarHandler */ public function createRollbarHandler() { return new RollbarHandler(Rollbar::logger(), LogLevel::ERROR); }