Package | mx.logging.targets |
Class | public class LineFormattedTarget |
Inheritance | LineFormattedTarget AbstractTarget Object |
Subclasses | TraceTarget |
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
fieldSeparator : String = " "
The separator string to use between fields (the default is " ")
| LineFormattedTarget | ||
filters : 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 | ||
id : 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 | ||
level : int
Provides access to the level this target is currently set at. | AbstractTarget | ||
prototype : Object [static]
A reference to the prototype object of a class or function object. | Object |
Method | Defined By | ||
---|---|---|---|
Constructor. | LineFormattedTarget | ||
Sets up this target with the specified logger. | AbstractTarget | ||
Indicates whether an object has a specified property defined. | Object | ||
Called after the implementing object has been created
and all properties specified on the tag have been assigned. | AbstractTarget | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
[override]
This method handles a LogEvent from an associated logger. | LineFormattedTarget | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Stops this target from receiving events from the specified logger. | AbstractTarget | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object |
fieldSeparator | property |
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 " ")
includeCategory | property |
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.
includeDate | property |
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.
includeLevel | property |
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.
includeTime | property |
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.
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.
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.
|
Fri Mar 19 2010, 02:45 AM -07:00