| Package | com.lightstreamer.as_client.logger |
| Interface | public interface LoggerListener |
| Implementors | DataGridAppender, TraceAppender |
See also
| Method | Defined by | ||
|---|---|---|---|
|
getLevel():uint
Return the actual threshold level of the listener instance.
| LoggerListener | ||
|
log(loggerName:String, level:String, mex:String):void
Receive log messages from the Logger instances to which it was added and from their sons.
| LoggerListener | ||
| getLevel | () | method |
public function getLevel():uintReturn the actual threshold level of the listener instance. This method is used by the Logger engine to determine whether or not to send a message to the listener.
Returnsuint — the level of the listener instance. It should be one of DEBUG INFO WARN ERROR.
|
See also
| log | () | method |
public function log(loggerName:String, level:String, mex:String):voidReceive log messages from the Logger instances to which it was added and from their sons.
ParametersloggerName:String — the name of the Logger instance that has published the message.
|
|
level:String — the string version of the level of the message.
|
|
mex:String — the message.
|