LogHandler
FlashDebugToolHandler the org.actionstep.FDTDebugger.trace method to log
messages.
public function FlashDebugToolHandler(messageStringifier:Stringifier)
Constructs a new FlashDebugToolHandler instance.
You can use one and the same instance for multiple loggers. So think about using the handler returned by the static getInstance method. Using this instance prevents the instantiation of unnecessary trace handlers and saves storage.
messageStringifier | (optional) the log message stringifier to use |
static public function getInstance(messageStringifier:Stringifier):FlashDebugToolHandlerReturns an instance of this class.
This method always returns the same instance.
The messageStringifier argument is only recognized on first
invocation of this method.
messageStringifier | (optional) the log message stringifier to be used by the returned handler |
a flash debug tool handler
public function write(message:LogMessage):Void
Writes the passed-in message using the org.actionstep.FDTDebugger.trace
method.
The string representation of the message to log is obtained via
the convertMessage method.
message | the message to log |