LogListener Displays log messages into Firebug console.
Example
Logger.getInstance().addLogListener( FireBugTracer.getInstance(), FeverDebug.channel );
FeverDebug.WARN( "A warning message" );
static public function connect(channel:LogChannel):FireBugTracer
Creates FireBugTracer instance and connects it to passed
channel for logging API.
Example
FireBugTracer.connect( FeverDebug.channel );
static public function getInstance():FireBugTracerCreates and returns a FireBugTracer instance.
public function openGroup(caption:String):VoidWrites the passed-in message to the console and opens a nested block to indent all future messages sent to the console.
public function closeGroup():VoidCloses the most recently opened block created by a call to openGroup.