Packagevegas.logging
Classpublic class LogEventLevel
InheritanceLogEventLevel Inheritance CoreObject

Static class containing constants for use in the level property.



Public Methods
 MethodDefined by
  
LogEventLevel(name:String, value:int)
Creates a new LogEventLevel instance.
LogEventLevel
 Inherited
Returns the internal ILogger reference of this ILogable object.
CoreObject
 Inherited
hashCode():uint
Returns a hashcode value for the object.
CoreObject
  
isValidLevel(level:LogEventLevel):Boolean
[static] Returns true if the number level passed in argument is valid.
LogEventLevel
 Inherited
setLogger(log:ILogger = null):void
Sets the internal ILogger reference of this ILogable object.
CoreObject
  
toSource(indent:int = 0):String
Returns the Eden string representation of the object.
LogEventLevel
  
toString():String
Returns the string representation of the object.
LogEventLevel
  
valueOf():int
Returns the value of this object.
LogEventLevel
Public Constants
 ConstantDefined by
  ALL : LogEventLevel
[static] Intended to force a target to process all messages (0).
LogEventLevel
  DEBUG : LogEventLevel
[static] Designates informational level messages that are fine grained and most helpful when debugging an application (2).
LogEventLevel
  ERROR : LogEventLevel
[static] Designates error events that might still allow the application to continue running (8).
LogEventLevel
  FATAL : LogEventLevel
[static] Designates events that are very harmful and will eventually lead to application failure (1000).
LogEventLevel
  INFO : LogEventLevel
[static] Designates informational messages that highlight the progress of the application at coarse-grained level (4).
LogEventLevel
  WARN : LogEventLevel
[static] Designates events that could be harmful to the application operation (6).
LogEventLevel
Constructor detail
LogEventLevel()constructor
public function LogEventLevel(name:String, value:int)

Creates a new LogEventLevel instance.

Parameters
name:String
 
value:int
Method detail
isValidLevel()method
public static function isValidLevel(level:LogEventLevel):Boolean

Returns true if the number level passed in argument is valid.

Parameters
level:LogEventLevel

Returns
Boolean
toSource()method 
public override function toSource(indent:int = 0):String

Returns the Eden string representation of the object.

Parameters
indent:int (default = 0)

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

Returns the string representation of the object.

Returns
String
valueOf()method 
public function valueOf():int

Returns the value of this object.

Returns
int
Constant detail
ALLconstant
public static const ALL:LogEventLevel

Intended to force a target to process all messages (0).

DEBUGconstant 
public static const DEBUG:LogEventLevel

Designates informational level messages that are fine grained and most helpful when debugging an application (2).

ERRORconstant 
public static const ERROR:LogEventLevel

Designates error events that might still allow the application to continue running (8).

FATALconstant 
public static const FATAL:LogEventLevel

Designates events that are very harmful and will eventually lead to application failure (1000).

INFOconstant 
public static const INFO:LogEventLevel

Designates informational messages that highlight the progress of the application at coarse-grained level (4).

WARNconstant 
public static const WARN:LogEventLevel

Designates events that could be harmful to the application operation (6).