Package | net.sourceforge.fxpotpourri.logging.api |
Interface | public interface ILog |
Implementors | Log, LogCentral |
Property | Defined by | ||
---|---|---|---|
isDebugEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| ILog | ||
isErrorEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| ILog | ||
isFatalEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| ILog | ||
isFineEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| ILog | ||
isInfoEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| ILog | ||
isWarnEnabled : Boolean [read-only]
Checks if there is any appender active for this class' log.
| ILog |
Method | Defined by | ||
---|---|---|---|
debug(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level DEBUG.
| ILog | ||
error(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level ERROR.
| ILog | ||
fatal(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level FATAL.
| ILog | ||
fine(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level FINE.
| ILog | ||
info(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level INFO.
| ILog | ||
warn(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level WARN.
| ILog |
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
debug | () | method |
public function debug(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level DEBUG.
Parametersmessage:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|
error | () | method |
public function error(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level ERROR.
Parametersmessage:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|
fatal | () | method |
public function fatal(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level FATAL.
Parametersmessage:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|
fine | () | method |
public function fine(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level FINE.
Parametersmessage:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|
info | () | method |
public function info(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level INFO.
Parametersmessage:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|
warn | () | method |
public function warn(message:String, error:Error = null):void
Broadcasts given message (and error) to all configured appenders with level WARN.
Parametersmessage:String — string which should be logged
|
|
error:Error (default = null ) — thrown (optional)
|