Packageorg.spicefactory.lib.logging
Interfacepublic interface Appender
Implementors AbstractAppender

An Appender is a target for log output. All FlashLogger instances route their log output through one or more Appenders.



Public Properties
 PropertyDefined By
  threshold : LogLevel
The threshold level for this Appender.
Appender
Public Methods
 MethodDefined By
  
Registers the specified Logger with this Appender.
Appender
Property Detail
thresholdproperty
threshold:LogLevel

The threshold level for this Appender. The Appender threshold is an additional filtering mechanism to the log level of Logger instances. Any log messages with a log level below the threshold will be ignored by this Appender.


Implementation
    public function get threshold():LogLevel
    public function set threshold(value:LogLevel):void
Method Detail
registerLogger()method
public function registerLogger(logger:SpiceLogger):void

Registers the specified Logger with this Appender. Implementations usually register listeners for LogEvents of the specified Logger.

Parameters

logger:SpiceLogger — the logger to register with this Appender