Hi, first, thanks for a great application! This and Firebug make web programming much less of a headache.
How about making FirePHP debug aware?
e.g.
// In my headers
define("DEBUG", true);
// in fb.php
function fb(...) {
if(defined('DEBUG') && DEBUG) {
// Function contents
}
else {}
}
Thus I can saffely leave in any call to fb() in a production environment, so long as I define DEBUG false.