Anybody here can point me on the right direction on using firebug for logging on Zend 1.9.x ?
I am using this : (from Zend Framework Manual page)
// Place this in your bootstrap file before dispatching your front controller
$writer = new Zend_Log_Writer_Firebug();
$logger = new Zend_Log($writer);
// Use this in your model, view and controller files
$logger->log('This is a log message!', Zend_Log::INFO);
but its not working at all.