Packagemx.logging.targets
Classpublic class LineFormattedTarget
InheritanceLineFormattedTarget Inheritance AbstractTarget Inheritance Object
Subclasses TraceTarget

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

All logger target implementations that have a formatted line style output should extend this class. It provides default behavior for including date, time, category, and level within the output.



Public Properties
 PropertyDefined By
  fieldSeparator : 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
  includeCategory : Boolean
Indicates if the category for this target should added to the trace.
LineFormattedTarget
  includeDate : Boolean
Indicates if the date should be added to the trace.
LineFormattedTarget
  includeLevel : Boolean
Indicates if the level for the event should added to the trace.
LineFormattedTarget
  includeTime : 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.
LineFormattedTarget
 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
  
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
Property Detail
fieldSeparatorproperty
public var fieldSeparator:String =

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

The separator string to use between fields (the default is " ")

includeCategoryproperty 
public var includeCategory:Boolean

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

Indicates if the category for this target should added to the trace.

includeDateproperty 
public var includeDate:Boolean

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

Indicates if the date should be added to the trace.

includeLevelproperty 
public var includeLevel:Boolean

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

Indicates if the level for the event should added to the trace.

includeTimeproperty 
public var includeTime:Boolean

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

Indicates if the time should be added to the trace.

Constructor Detail
LineFormattedTarget()Constructor
public function LineFormattedTarget()

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 format the message data on a single line.

Method Detail
logEvent()method
override public function logEvent(event:LogEvent):void

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

This method handles a LogEvent from an associated logger. A target uses this method to translate the event into the appropriate format for transmission, storage, or display. This method is called only if the event's level is in range of the target's level.

Parameters

event:LogEvent — The LogEvent handled by this method.