| Package | org.as3commons.logging.setup.target |
| Class | public final class ChainsawTarget |
| Inheritance | ChainsawTarget Object |
| Implements | ILogTarget |
| Since : | 2.7 |
ChainsawTarget sends events to Chainsaw, a tool from the log4j
platform.
See also
| Property | Defined By | ||
|---|---|---|---|
| format : String [write-only]
| ChainsawTarget | ||
| Method | Defined By | ||
|---|---|---|---|
ChainsawTarget(format:String = null, gateway:ChainsawGateway = null)
Constructs a new ChainsawTarget
| ChainsawTarget | ||
log(name:String, shortName:String, level:int, timeStamp:Number, message:*, params:Array, person:String):void
Renders a log statement. | ChainsawTarget | ||
| Constant | Defined By | ||
|---|---|---|---|
| DEFAULT_FORMAT : String = {message_dqt} [static] Default format used to format the log statement | ChainsawTarget | ||
| DEFAULT_GATEWAY : ChainsawGateway [static] Contains the standard gateway used if no custom one is required. | ChainsawTarget | ||
| format | property |
format:String [write-only]
public function set format(value:String):void| ChainsawTarget | () | Constructor |
public function ChainsawTarget(format:String = null, gateway:ChainsawGateway = null)
Constructs a new ChainsawTarget
format:String (default = null) — Format to be used to format the statements.
| |
gateway:ChainsawGateway (default = null) — Gateway to the SOS that runs. Will use the default gateway
in case no custom one is provided.
|
| log | () | method |
public function log(name:String, shortName:String, level:int, timeStamp:Number, message:*, params:Array, person:String):voidRenders a log statement.
In version 2.5 the person information was added and the time stamp
was modified to represent the local time rather than the time in gmt.
Add START_TIME to get the time in ms since 1970.
Parameters
name:String — Name of the logger that triggered the log statement.
| |
shortName:String — Shortened form of the name.
| |
level:int — Level of the log statement that got triggered.
| |
timeStamp:Number — getTimer() Timestame of when the log statement was triggered.
| |
message:* — Message of the log statement.
| |
params:Array — Parameters for the log statement.
| |
person:String — Information about the person that filed this log statement.
|
| DEFAULT_FORMAT | Constant |
public static const DEFAULT_FORMAT:String = {message_dqt}Default format used to format the log statement
| DEFAULT_GATEWAY | Constant |
public static const DEFAULT_GATEWAY:ChainsawGatewayContains the standard gateway used if no custom one is required.