Property | Defined by | ||
---|---|---|---|
isDebugEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| Log | ||
isErrorEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| Log | ||
isFatalEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| Log | ||
isFineEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| Log | ||
isInfoEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| Log | ||
isWarnEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| Log |
Method | Defined by | ||
---|---|---|---|
Log(source:Class)
| Log | ||
debug(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level DEBUG.
| Log | ||
error(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level ERROR.
| Log | ||
fatal(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level FATAL.
| Log | ||
fine(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level FINE.
| Log | ||
info(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level INFO.
| Log | ||
warn(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level WARN.
| Log |
isDebugEnabled | property |
isDebugEnabled:Boolean
[read-only]Checks if there is any appender active for this class' log.
Implementation public function get isDebugEnabled():Boolean
isErrorEnabled | property |
isErrorEnabled:Boolean
[read-only]Checks if there is any appender active for this class' log.
Implementation public function get isErrorEnabled():Boolean
isFatalEnabled | property |
isFatalEnabled:Boolean
[read-only]Checks if there is any appender active for this class' log.
Implementation public function get isFatalEnabled():Boolean
isFineEnabled | property |
isFineEnabled:Boolean
[read-only]Checks if there is any appender active for this class' log.
Implementation public function get isFineEnabled():Boolean
isInfoEnabled | property |
isInfoEnabled:Boolean
[read-only]Checks if there is any appender active for this class' log.
Implementation public function get isInfoEnabled():Boolean
isWarnEnabled | property |
isWarnEnabled:Boolean
[read-only]Checks if there is any appender active for this class' log.
Implementation public function get isWarnEnabled():Boolean
Log | () | constructor |
public function Log(source:Class)
Parameters
source:Class |
debug | () | method |
public function debug(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level DEBUG.
Parametersmsg:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|
error | () | method |
public function error(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level ERROR.
Parametersmsg:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|
fatal | () | method |
public function fatal(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level FATAL.
Parametersmsg:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|
fine | () | method |
public function fine(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level FINE.
Parametersmsg:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|
info | () | method |
public function info(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level INFO.
Parametersmsg:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|
warn | () | method |
public function warn(msg:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level WARN.
Parametersmsg:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|