FlashDebugToolHandler
| Kind of class: | class |
|---|---|
| Inherits from: | AbstractLogHandler < BasicClass |
| Implements: | |
| Author: | Simon Wacker |
| Classpath: | org.as2lib.env.log.handler.FlashDebugToolHandler |
| File last modified: | Tuesday, 31 May 2005, 17:52:32 |
FlashDebugToolHandler the org.actionstep.FDTDebugger.trace method to logmessages.
Summary
Constructor
Instance properties
Instance properties inherited from AbstractLogHandler
Class methods
Instance methods
Instance methods inherited from AbstractLogHandler
Instance methods inherited from BasicClass
Constructor
FlashDebugToolHandler
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.
Parameters:
messageStringifier:
(optional) the log message stringifier to use
Class methods
getInstance
static function getInstance (
messageStringifier:Stringifier) : FlashDebugToolHandler
Returns an instance of this class.
This method always returns the same instance.
The messageStringifier argument is only recognized on first
invocation of this method.
Parameters:
messageStringifier:
(optional) the log message stringifier to be used by
the returned handler
the returned handler
Returns:
a flash debug tool handler
Instance methods
write
function write (
message:LogMessage) : Void
Writes the passed-in
method.
message using the org.actionstep.FDTDebugger.tracemethod.
The string representation of the message to log is obtained via
the convertMessage method.
Parameters:
message:
the message to log
Specified by: