Packagenet.sourceforge.fxpotpourri.logging.core
Classpublic final class Log
ImplementsILog



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined 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
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
Constructor detail
Log()constructor
public function Log(source:Class)Parameters
source:Class
Method detail
debug()method
public function debug(msg:String, error:Error = null):void

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

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

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

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

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

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

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