I'm new to both javascript and firefox extension writing so I need a really explicit answer.
I'm writing a firefox extension that will inspect and modify GET requests from the browser before the page is loaded. I need to debug my code and installed matching versions of Chromebug and Firebug (1.7.0a7).
What do I need to put into my extensions javascript code to get it to output to the chromebug log. I tried Chromebug.Console.log("message here") and Firebug.Console.log("message here") and neither output to the chromebug console.
How is logging done for firefox extensions?