Packagesystem.logging
Classpublic class LoggerEntry
InheritanceLoggerEntry Inheritance Object

Represents the log information for a single logging notification. The loging system dispatches a single message each time a process requests information be logged. This entry can be captured by any object for storage or formatting.



Public Properties
 PropertyDefined By
  channel : String
Provides access to the channel for this log entry.
LoggerEntry
  level : LoggerLevel
Provides access to the level for this log entry.
LoggerEntry
  message : *
Provides access to the message that was entry.
LoggerEntry
Public Methods
 MethodDefined By
  
LoggerEntry(message:* = null, level:LoggerLevel = null, channel:String = null)
Creates a new LoggerEntry.
LoggerEntry
Property Detail
channelproperty
public var channel:String

Provides access to the channel for this log entry.

levelproperty 
public var level:LoggerLevel

Provides access to the level for this log entry.

messageproperty 
public var message:*

Provides access to the message that was entry.

Constructor Detail
LoggerEntry()Constructor
public function LoggerEntry(message:* = null, level:LoggerLevel = null, channel:String = null)

Creates a new LoggerEntry.

Parameters
message:* (default = null) — The context or message of the log.
 
level:LoggerLevel (default = null) — The level of the log.
 
channel:String (default = null) — The Logger reference of this entry.