Package | com.asfusion.mate.utils.debug |
Class | public class LogInfo |
Debugger
that encapsulates
all the information necessary to create a log.
Property | Defined by | ||
---|---|---|---|
data : Object
Any extra data that you need to pass to the logger
| LogInfo | ||
error : Error
The error thrown by the virtual matchine
| LogInfo | ||
foundProblem : Boolean
A flag indicating that a problem was found
| LogInfo | ||
instance : *
Current isntance.
| LogInfo | ||
loggerProvider : ILoggerProvider
The current scope at the time that the log occurs.
| LogInfo | ||
method : String
The name of the method or "constructor"
| LogInfo | ||
parameters : Array
Parameters that were used to call a method or contructor
| LogInfo | ||
problem : String
The description of the problem
| LogInfo | ||
property : String
The name of the property
| LogInfo | ||
target : *
Current target.
| LogInfo |
Method | Defined by | ||
---|---|---|---|
LogInfo(loggerProvider:ILoggerProvider, instance:Error = null, error:String = null, method:Array = null, parameters:String = null, property:* = null)
Constructor
| LogInfo |
data | property |
public var data:Object
Any extra data that you need to pass to the logger
error | property |
public var error:Error
The error thrown by the virtual matchine
foundProblem | property |
public var foundProblem:Boolean
A flag indicating that a problem was found
instance | property |
public var instance:*
Current isntance. The object that the target is
working on, for example the instance that a MethodInvoker
creates.
loggerProvider | property |
public var loggerProvider:ILoggerProvider
The current scope at the time that the log occurs.
method | property |
public var method:String
The name of the method or "constructor"
parameters | property |
public var parameters:Array
Parameters that were used to call a method or contructor
problem | property |
public var problem:String
The description of the problem
property | property |
public var property:String
The name of the property
target | property |
public var target:*
Current target. Usually, the tag that is executing when
the log occurs, for example, when a MethodInvoker
, or a RemoteObjectInvoker
runs.
LogInfo | () | constructor |
public function LogInfo(loggerProvider:ILoggerProvider, instance:Error = null, error:String = null, method:Array = null, parameters:String = null, property:* = null)
Constructor
ParametersloggerProvider:ILoggerProvider |
|
instance:Error (default = null )
|
|
error:String (default = null )
|
|
method:Array (default = null )
|
|
parameters:String (default = null )
|
|
property:* (default = null )
|