I think I've successfully installed the FirePHP module in Kohana 3.1 but I'm not getting any output to the FireBug console.
I've tried this:
FirePHP::log('test');
and got this error:
Non-static method FirePHP::log() should not be called statically, assuming $this from incompatible context.
When I turn off the module and run FirePHP manually:
require_once('FirePHPCore/fb.php');
fb('test');
Nothing shows up in the console.