I want to output a simple string in Firebug Console with FirePHP.
I have a simple test in index.php:
require_once('../system/lib/FirePHPCore/FirePHP.class.php');
$firephp = FirePHP::getInstance(true);
$var = array('i'=>10, 'j'=>20);
$firephp->log($var, 'Iterators');
then I get log in console:
But when I add some additional firephp log in another file b_product_settings.php
class prdsetActions extends ActionsController {
function save_product(){
global $firephp;
$firephp->log('save_product_started11');
...
}
...
}
and call save_product() from index.php, then I see only first log string in Console tab
and two strings like X-Wf-1-1-1- in Net tab
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Connection keep-alive
Content-Type text/html; charset=UTF-8
Date Thu, 19 Feb 2015 13:16:25 GMT
Expires Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified Thu, 19 Feb 2015 13:16:25GMT
Location /published/SC/html/scripts/index.php?ukey=product_settings&productID=1&search=yes&did=109&msg=9uzr
P3P CP="CAO PSA OUR"
Pragma no-cache
Server nginx/1.2.1
Transfer-Encoding chunked
X-Wf-1-1-1-1 165|[{"Type":"LOG","Label":"Iterators","File":"\/var\/www\/site.com\/published\/SC\/html\/scripts\/index.php","Line":"19"},{"i":"10","j":"20"}]|
X-Wf-1-1-1-2 191|[{"Type":"LOG","File":"\/var\/www\/site.com\/published\/SC\/html\/scripts\/modules\/products\/_methods\/b_product_settings.php","Line":"9"},"save_product_started11"]|
X-Wf-1-Index 2
X-Wf-1-Plugin-1 http://meta.firephp.org/Wildfire/Plugin/FirePHP/Library-FirePHPCore/0.3
X-Wf-1-Structure-1 http://meta.firephp.org/Wildfire/Structure/FirePHP/FirebugConsole/0.1
X-Wf-Protocol-1 http://meta.wildfirehq.org/Protocol/JsonStream/0.2
Why the second firephp log is not in Console tab? Any suggestions, please. I'm at an impasse.
This bug disappeared with updating Firefox to 37.0