> I've installed it - took about 4 minutes to get up-and-running... I love
> it already! Debugging without breaking the application output - it is
> exactly what the doctor ordered!*grin*
I have just put up an update that allows you to browse the full stack
trace of any PHP exception including variables in Firebug. Simply log
exceptions with:
try {
...
} catch(Exception $e) {
fb($e);
}
There is a screenshot of how this looks in the Console here:
http://www.firephp.org/
Let me know what you think.
Christoph