What I think is that you should do more promotion about firePHP
offering ZF integration: I did regular firePHP and even put the
libraries on the server, while I now understand they are actually in
the framework (? or are the libraries still needed, will have to read
more docs :-) where
do I find the time).
Keep up the good work!
Bart
Christoph Dorn schreef:
I
have made some important updates to Zend_Wildfire. Code is in the SVN
trunk.
When logging objects in frameworks like ZF there can be many object
members that while important to the framework are of less interest when
debugging. If these members are logged they bloat the log message that
is sent to the client, they will slow down the client UI and make it
harder to inspect the members you actually want to see.
You can now exclude specific object members by class name and member
name with:
$firephp = Zend_Wildfire_Plugin_FirePhp::getInstance();
$firephp->setObjectFilter('Class_Name',array('Member1','Member2'));
When logging objects and arrays you can now limit the depth with:
$firephp->setOption('maxObjectDepth',3);
$firephp->setOption('maxArrayDepth',3);
You can also limit the number of steps in traces with:
$firephp->setOption('maxTraceDepth',3);
By default file and line information is now sent for each log message.
You can disable this with:
$firephp->setOption('includeLineNumbers',false);
Let me know what you think!
|