Packageorg.spicefactory.lib.logging
Classpublic class LogEvent
InheritanceLogEvent Inheritance flash.events.Event

Event that fires when a log method is invoked in a FlashLogger instance.



Public Properties
 PropertyDefined By
  level : LogLevel
[read-only] The level for this event.
LogEvent
  message : String
[read-only] The message for this event.
LogEvent
Public Methods
 MethodDefined By
  
LogEvent(level:LogLevel, message:String)
Creates a new instance.
LogEvent
Public Constants
 ConstantDefined By
  LOG : String = log
[static] Constant for the type of event fired when a log method is invoked in a Logger instance.
LogEvent
Property Detail
levelproperty
level:LogLevel  [read-only]

The level for this event.


Implementation
    public function get level():LogLevel
messageproperty 
message:String  [read-only]

The message for this event.


Implementation
    public function get message():String
Constructor Detail
LogEvent()Constructor
public function LogEvent(level:LogLevel, message:String)

Creates a new instance.

Parameters
level:LogLevel — the level that is associated with this event
 
message:String — the log message for this event
Constant Detail
LOGConstant
public static const LOG:String = log

Constant for the type of event fired when a log method is invoked in a Logger instance.