org.as2lib.core.BasicClass +--org.as2lib.env.log.level.AbstractLogLevel
LogLevel
AbstractLogLevel
acts as a basic access point for the pre-defined levels
ALL, DEBUG, INFO, WARNING, ERROR,
FATAL and NONE.
static public ALL:LogLevel
static public DEBUG:LogLevel
static public INFO:LogLevel
static public WARNING:LogLevel
static public ERROR:LogLevel
static public FATAL:LogLevel
static public NONE:LogLevel
public function isGreaterOrEqual(level:LogLevel):Boolean
Compares the number representation of this level with the one of the passed-in
level
using the is greater or equal operator.
true
will be returned if:
level
. level
is null
or undefined
.level | the level to compare this level with |
true
if this level is greater or equal than the passed-in
level
else false
public function toNumber(Void):Number
Returns the number representation of this level.
The return value is never null
or undefined
.
the number representation of this level
public function toString():String
Returns the string representation of this level.
the string representation of this level
toString() in org.as2lib.core.BasicInterface