Packagemx.logging.targets
Classpublic class TraceTarget
InheritanceTraceTarget Inheritance LineFormattedTarget Inheritance AbstractTarget Inheritance Object

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Provides a logger target that uses the global trace() method to output log messages.

To view trace() method output, you must be running the debugger version of Flash Player or AIR Debug Launcher.

The debugger version of Flash Player and AIR Debug Launcher send output from the trace() method to the flashlog.txt file. The default location of this file is the same directory as the mm.cfg file. You can customize the location of this file by using the TraceOutputFileName property in the mm.cfg file. You must also set TraceOutputFileEnable to 1 in your mm.cfg file.



Public Properties
 PropertyDefined By
 InheritedfieldSeparator : String =
The separator string to use between fields (the default is " ")
LineFormattedTarget
 Inheritedfilters : Array
In addition to the level setting, filters are used to provide a psuedo-hierarchical mapping for processing only those events for a given category.
AbstractTarget
 Inheritedid : String
[read-only] Provides access to the id of this target.
AbstractTarget
 InheritedincludeCategory : Boolean
Indicates if the category for this target should added to the trace.
LineFormattedTarget
 InheritedincludeDate : Boolean
Indicates if the date should be added to the trace.
LineFormattedTarget
 InheritedincludeLevel : Boolean
Indicates if the level for the event should added to the trace.
LineFormattedTarget
 InheritedincludeTime : Boolean
Indicates if the time should be added to the trace.
LineFormattedTarget
 Inheritedlevel : int
Provides access to the level this target is currently set at.
AbstractTarget
Public Methods
 MethodDefined By
  
Constructor.
TraceTarget
 Inherited
addLogger(logger:ILogger):void
Sets up this target with the specified logger.
AbstractTarget
 Inherited
initialized(document:Object, id:String):void
Called after the implementing object has been created and all properties specified on the tag have been assigned.
AbstractTarget
 Inherited
logEvent(event:LogEvent):void
[override] This method handles a LogEvent from an associated logger.
LineFormattedTarget
 Inherited
removeLogger(logger:ILogger):void
Stops this target from receiving events from the specified logger.
AbstractTarget
Constructor Detail
TraceTarget()Constructor
public function TraceTarget()

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Constructor.

Constructs an instance of a logger target that will send the log data to the global trace() method. All output will be directed to flashlog.txt by default.