Blog Archive for February 19, 2010

Firebug Console Functions

February 19, 2010

The firebug plugin to firefox supports a variety of different functions which can be used for debugging and profiling a web app.

Logging

You can log messages at different levels, just like log4j.

console.log("Hello World");
console.debug("Debug Output");
console.warn …