Package | com.luminicbox.log |
Class | public class Level |
Property | Defined by | ||
---|---|---|---|
ALL : Level
[static]
The ALL level designates the lowest level possible.
| Level | ||
DEBUG : Level
[static]
The DEBUG level designates fine-grained debug information.
| Level | ||
ERROR : Level
[static]
The ERROR level designates error events that might still allow the application to continue running.
| Level | ||
FATAL : Level
[static]
The FATAL level designates very severe error events that will presumably lead the application to abort or stop.
| Level | ||
INFO : Level
[static]
The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.
| Level | ||
LOG : Level
[static]
The LOG level designates fine-grained informational events.
| Level | ||
NONE : Level
[static]
The NONE level when used with setLevel makes all messages to be ignored.
| Level | ||
WARN : Level
[static]
The WARN level designates potentially harmful situations.
| Level |
Method | Defined by | ||
---|---|---|---|
Level(name:String, value:Number)
| Level | ||
getName():String
Returns the level's name.
| Level | ||
getValue():Number
Returns the level's bitwise value.
| Level | ||
toString():String
Return the level's name.
| Level |
ALL | property |
public static var ALL:Level
The ALL level designates the lowest level possible.
DEBUG | property |
public static var DEBUG:Level
The DEBUG level designates fine-grained debug information.
ERROR | property |
public static var ERROR:Level
The ERROR level designates error events that might still allow the application to continue running.
FATAL | property |
public static var FATAL:Level
The FATAL level designates very severe error events that will presumably lead the application to abort or stop.
INFO | property |
public static var INFO:Level
The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.
LOG | property |
public static var LOG:Level
The LOG level designates fine-grained informational events.
NONE | property |
public static var NONE:Level
The NONE level when used with setLevel makes all messages to be ignored.
WARN | property |
public static var WARN:Level
The WARN level designates potentially harmful situations.
Level | () | constructor |
public function Level(name:String, value:Number)
Parameters
name:String |
|
value:Number |
getName | () | method |
public function getName():String
Returns the level's name.
ReturnsString |
getValue | () | method |
public function getValue():Number
Returns the level's bitwise value.
ReturnsNumber |
toString | () | method |
public function toString():String
Return the level's name.
ReturnsString |