00001 <?php 00024 require_once 'Zend/Log/Formatter/Interface.php'; 00025 00033 class Zend_Log_Formatter_Firebug implements Zend_Log_Formatter_Interface 00034 { 00046 public function format($event) 00047 { 00048 return $event['message']; 00049 } 00050 }