Packagevegas.logging
Interfacepublic interface ILogger extends flash.events.IEventDispatcher
ImplementorsLogLogger

All loggers within the logging framework must implement this interface.



Public Properties
 PropertyDefined by
  category : String
[read-only] The category value for the logger.
ILogger
Public Methods
 MethodDefined by
  
debug(context:*, ... rest):void
Logs the specified data using the LogEventLevel.DEBUG level.
ILogger
  
error(context:*, ... rest):void
Logs the specified data using the LogEventLevel.ERROR level..
ILogger
  
fatal(context:*, ... rest):void
Logs the specified data using the LogEventLevel.FATAL level.
ILogger
  
info(context:*, ... rest):void
Logs the specified data using the LogEvent.INFO level.
ILogger
  
log(level:LogEventLevel, ... context, rest:*):void
Logs the specified data at the given level.
ILogger
  
warn(context:*, ... rest):void
Logs the specified data using the LogEventLevel.WARN level.
ILogger
Property detail
categoryproperty
category:String  [read-only]

The category value for the logger.

Implementation
    public function get category():String
Method detail
debug()method
public function debug(context:*, ... rest):void

Logs the specified data using the LogEventLevel.DEBUG level.

Parameters
context:*
 
... rest
error()method 
public function error(context:*, ... rest):void

Logs the specified data using the LogEventLevel.ERROR level..

Parameters
context:*
 
... rest
fatal()method 
public function fatal(context:*, ... rest):void

Logs the specified data using the LogEventLevel.FATAL level.

Parameters
context:*
 
... rest
info()method 
public function info(context:*, ... rest):void

Logs the specified data using the LogEvent.INFO level.

Parameters
context:*
 
... rest
log()method 
public function log(level:LogEventLevel, ... context, rest:*):void

Logs the specified data at the given level.

Parameters
level:LogEventLevel
 
... context
 
rest:*
warn()method 
public function warn(context:*, ... rest):void

Logs the specified data using the LogEventLevel.WARN level.

Parameters
context:*
 
... rest