I am trying to do a simple test with Firebug in Mozilla, however it is not working, nothing appear in the firebug console. This my code:
public function index()
{
$monolog = \Log::getMonolog();
$items = ['Pack luggage', 'Go to airport', 'Arrive in San Juan'];
$monolog->pushHandler(new \Monolog\Handler\FirePHPHandler());
$monolog->addInfo('Log Message', array('items' => $items));
return view('welcome');
}
Firefox version: 38.0.1, Firebug version: 2.0.9 and FirePHP 0.7.4. I read some post and I think the problem maybe is Firefox. Any suggestion please? Kind regards.