Packageorg.as3commons.logging.setup.target
Interfacepublic interface IAsyncLogTarget extends ILogTarget
Implementors BufferTarget, ConditionalBuffer, FrameBufferTarget

Since : 2.5

Defines a target that needs to store data before logging it.

To preserve the variables passed in to the log statement asynchronous loggers need to clone instances to store the log statements. They use for this the clone method.

See also

org.as3commons.logging.util.clone


Public Properties
 PropertyDefined By
  introspectDepth : uint
[write-only] Asynchronous targets need to introspect variables to store them, for that the introspection depth defines how deep the variables should be serialized.
IAsyncLogTarget
Public Methods
 MethodDefined By
 Inherited
log(name:String, shortName:String, level:int, timeStamp:Number, message:*, parameters:Array, person:String):void
Renders a log statement.
ILogTarget
Property Detail
introspectDepthproperty
introspectDepth:uint  [write-only]

Asynchronous targets need to introspect variables to store them, for that the introspection depth defines how deep the variables should be serialized. (default=uint.MAX_VALUE)


Implementation
    public function set introspectDepth(value:uint):void