| Package | vegas.logging |
| Interface | public interface ITarget |
| Implementors | AbstractTarget |
| Property | Defined by | ||
|---|---|---|---|
| filters : Array
(read-write) Returns the filters array of this target.
| ITarget | ||
| level : LogEventLevel
(read-write) Returns the level of this target.
| ITarget | ||
| Method | Defined by | ||
|---|---|---|---|
|
Sets up this target with the specified logger.
| ITarget | ||
|
removeLogger(logger:ILogger):void
Stops this target from receiving events from the specified logger.
| ITarget | ||
| filters | property |
filters:Array [read-write](read-write) Returns the filters array of this target.
In addition to the level setting, filters are used to provide a psuedo-hierarchical mapping for processing only those events for a given category.
Implementation public function get filters():Array
public function set filters(value:Array):void
| level | property |
level:LogEventLevel [read-write](read-write) Returns the level of this target. Provides access to the level this target is currently set at.
Implementation public function get level():LogEventLevel
public function set level(value:LogEventLevel):void
| addLogger | () | method |
public function addLogger(logger:ILogger):voidSets up this target with the specified logger. Note : this method is called by the framework and should not be called by the developer.
Parameterslogger:ILogger |
| removeLogger | () | method |
public function removeLogger(logger:ILogger):voidStops this target from receiving events from the specified logger. Note : this method is called by the framework and should not be called by the developer.
Parameterslogger:ILogger |