LogListener Displays log messages from Pixlib Logging API.
Implements Pixlib LogListener interface
Example
Logger.getInstance().addLogListener( FvAsWingTracer.getInstance(), FeverDebug.channel );
FeverDebug.WARN( "A warning message" );
static public function connect(channel:LogChannel):FvAsWingTracer
Creates FvAsWingTracer instance and connects it to passed
channel for logging API.
Example
FvAsWingTracer.connect( FeverDebug.channel ).open();
static public function getInstance():FvAsWingTracerCreates and returns a FvAsWingTracer instance.
public function onLog(e:LogEvent):Void
Sends log message obtained from the passed-in e model to all
registred Logger listeners.
e | Pixlib LogEvent instance |