Can someone point me in the right direction to use firebug to log in to Zend 1.9.x?
I use this: (using the Zend Framework man page)
$writer = new Zend_Log_Writer_Firebug();
$logger = new Zend_Log($writer);
$logger->log('This is a log message!', Zend_Log::INFO);
but it doesn’t work at all.
source
share