Packagecom.luminicbox.log
Classpublic class Level

This abtract class contains definitions for the message's levels.
The predefined levels are: ALL, LOG, DEBUG, INFO, WARN, ERROR, FATAL and NONE.



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined 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
Property detail
ALLproperty
public static var ALL:Level

The ALL level designates the lowest level possible.

DEBUGproperty 
public static var DEBUG:Level

The DEBUG level designates fine-grained debug information.

ERRORproperty 
public static var ERROR:Level

The ERROR level designates error events that might still allow the application to continue running.

FATALproperty 
public static var FATAL:Level

The FATAL level designates very severe error events that will presumably lead the application to abort or stop.

INFOproperty 
public static var INFO:Level

The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.

LOGproperty 
public static var LOG:Level

The LOG level designates fine-grained informational events.

NONEproperty 
public static var NONE:Level

The NONE level when used with setLevel makes all messages to be ignored.

WARNproperty 
public static var WARN:Level

The WARN level designates potentially harmful situations.

Constructor detail
Level()constructor
public function Level(name:String, value:Number)Parameters
name:String
 
value:Number
Method detail
getName()method
public function getName():String

Returns the level's name.

Returns
String
getValue()method 
public function getValue():Number

Returns the level's bitwise value.

Returns
Number
toString()method 
public function toString():String

Return the level's name.

Returns
String