Packagenet.sourceforge.fxpotpourri.logging.api
Interfacepublic interface ILog
ImplementorsLog, LogCentral



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined 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
Property detail
isDebugEnabledproperty
isDebugEnabled:Boolean  [read-only]

Checks if there is any appender active for this class' log.

Implementation
    public function get isDebugEnabled():Boolean
isErrorEnabledproperty 
isErrorEnabled:Boolean  [read-only]

Checks if there is any appender active for this class' log.

Implementation
    public function get isErrorEnabled():Boolean
isFatalEnabledproperty 
isFatalEnabled:Boolean  [read-only]

Checks if there is any appender active for this class' log.

Implementation
    public function get isFatalEnabled():Boolean
isFineEnabledproperty 
isFineEnabled:Boolean  [read-only]

Checks if there is any appender active for this class' log.

Implementation
    public function get isFineEnabled():Boolean
isInfoEnabledproperty 
isInfoEnabled:Boolean  [read-only]

Checks if there is any appender active for this class' log.

Implementation
    public function get isInfoEnabled():Boolean
isWarnEnabledproperty 
isWarnEnabled:Boolean  [read-only]

Checks if there is any appender active for this class' log.

Implementation
    public function get isWarnEnabled():Boolean
Method detail
debug()method
public function debug(message:String, error:Error = null):void

Broadcasts given message (and error) to all configured appenders with level DEBUG.

Parameters
message: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.

Parameters
message: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.

Parameters
message: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.

Parameters
message: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.

Parameters
message: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.

Parameters
message:String — string which should be logged
 
error:Error (default = null) — thrown (optional)