Packagevegas.logging
Interfacepublic interface ITarget
ImplementorsAbstractTarget

All logger target implementations within the logging framework must implement this interface.



Public Properties
 PropertyDefined by
  filters : Array
(read-write) Returns the filters array of this target.
ITarget
  level : LogEventLevel
(read-write) Returns the level of this target.
ITarget
Public Methods
 MethodDefined by
  
addLogger(logger:ILogger):void
Sets up this target with the specified logger.
ITarget
  
removeLogger(logger:ILogger):void
Stops this target from receiving events from the specified logger.
ITarget
Property detail
filtersproperty
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
levelproperty 
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
Method detail
addLogger()method
public function addLogger(logger:ILogger):void

Sets up this target with the specified logger. Note : this method is called by the framework and should not be called by the developer.

Parameters
logger:ILogger
removeLogger()method 
public function removeLogger(logger:ILogger):void

Stops 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.

Parameters
logger:ILogger