23
Firebug Extended
Posted by | Posted in Actionscript 3.0 | Posted on 23-05-2010
I recently started using Firebug for outputting, I usually use Monster Debugger, but Firebug turns out to be really impressive and to have some surprising capabilities. I came across this article on Blitz's blog. Here is a quick recap:
Can take multiple arguments
console.log(a, b, c);
Has message levels
console.debug("message");
console.info("message");
console.warn("message");
console.error("message"); Read the rest of this entry »
