| Package | vegas.logging |
| Class | public class LogLogger |
| Inheritance | LogLogger flash.events.EventDispatcher |
| Implements | ILogger |
| Property | Defined by | ||
|---|---|---|---|
| category : String [read-only]
Returns the category of this logger.
| LogLogger | ||
| Method | Defined by | ||
|---|---|---|---|
|
LogLogger(category:String)
Creates a new LogLogger instance.
| LogLogger | ||
|
debug(context:*, ... rest):void
Logs the specified data using the LogEventLevel.DEBUG level.
| LogLogger | ||
|
error(context:*, ... rest):void
Logs the specified data using the LogEventLevel.ERROR level.
| LogLogger | ||
|
fatal(context:*, ... rest):void
Logs the specified data using the LogEventLevel.FATAL level.
| LogLogger | ||
|
info(context:*, ... rest):void
Logs the specified data using the LogEvent.INFO level.
| LogLogger | ||
|
log(level:LogEventLevel, ... context, rest:*):void
Logs the specified data at the given level.
| LogLogger | ||
|
warn(context:*, ... rest):void
Logs the specified data using the LogEventLevel.WARN level.
| LogLogger | ||
| category | property |
category:String [read-only]Returns the category of this logger.
Implementation public function get category():String
| LogLogger | () | constructor |
public function LogLogger(category:String)Creates a new LogLogger instance.
Parameterscategory:String |
| debug | () | method |
public function debug(context:*, ... rest):voidLogs the specified data using the LogEventLevel.DEBUG level.
Parameterscontext:* — The information to log. This string can contain special marker characters of the form {x}, where x is a zero based index that will be replaced with the additional parameters found at that index if specified.
|
|
... rest — Additional parameters that can be subsituted in the str parameter at each "{x}" location, where x is an integer (zero based) index value into the Array of values specified.
|
| error | () | method |
public function error(context:*, ... rest):voidLogs the specified data using the LogEventLevel.ERROR level.
Parameterscontext:* — The information to log. This string can contain special marker characters of the form {x}, where x is a zero based index that will be replaced with the additional parameters found at that index if specified.
|
|
... rest — Additional parameters that can be subsituted in the str parameter at each "{x}" location, where x is an integer (zero based) index value into the Array of values specified.
|
| fatal | () | method |
public function fatal(context:*, ... rest):voidLogs the specified data using the LogEventLevel.FATAL level.
Parameterscontext:* — The information to log. This string can contain special marker characters of the form {x}, where x is a zero based index that will be replaced with the additional parameters found at that index if specified.
|
|
... rest — Additional parameters that can be subsituted in the str parameter at each "{x}" location, where x is an integer (zero based) index value into the Array of values specified.
|
| info | () | method |
public function info(context:*, ... rest):voidLogs the specified data using the LogEvent.INFO level.
Parameterscontext:* — The information to log. This string can contain special marker characters of the form {x}, where x is a zero based index that will be replaced with the additional parameters found at that index if specified.
|
|
... rest — Additional parameters that can be subsituted in the str parameter at each "{x}" location, where x is an integer (zero based) index value into the Array of values specified.
|
| log | () | method |
public function log(level:LogEventLevel, ... context, rest:*):voidLogs the specified data at the given level.
Parameterslevel:LogEventLevel — The level this information should be logged at. Valid values are:
|
|
... context — The information to log. This string can contain special marker characters of the form {x}, where x is a zero based index that will be replaced with the additional parameters found at that index if specified.
|
|
rest:* — Additional parameters that can be subsituted in the str parameter at each "{x}" location, where x is an integer (zero based) index value into the Array of values specified.
|
| warn | () | method |
public function warn(context:*, ... rest):voidLogs the specified data using the LogEventLevel.WARN level.
Parameterscontext:* — The information to log. This string can contain special marker characters of the form {x}, where x is a zero based index that will be replaced with the additional parameters found at that index if specified.
|
|
... rest — Additional parameters that can be subsituted in the str parameter at each "{x}" location, where x is an integer (zero based) index value into the Array of values specified.
|