| Package | org.as3commons.logging.integration |
| Class | public final class Log5FIntegration |
| Inheritance | Log5FIntegration org.log5f.core.Appender |
| Implements | org.log5f.core.IAppender |
| Since : | 2.6 |
import org.as3commons.logging.integration.Log5FIntegration;
import org.log5f.LoggerManager;
import org.log5f.core.config.tags.LoggerTag;
import org.log5f.core.config.tags.ConfigurationTag;
var tag: LoggerTag = new LoggerTag();
tag.appenders = [new Log5FIntegration()];
tag.level = "ALL";
var setup: ConfigurationTag = new ConfigurationTag();
setup.objects = [tag];
LoggerManager.configure(setup);
See also
| Method | Defined By | ||
|---|---|---|---|
Creates a new Log5FIntegration. | Log5FIntegration | ||
| Method | Defined By | ||
|---|---|---|---|
append(event:LogEvent):void [override]
Sends the events to the as3commons logging framework. | Log5FIntegration | ||
| Log5FIntegration | () | Constructor |
public function Log5FIntegration()Creates a new Log5FIntegration. Automatically defines the layout as "SimpleLayout".
| append | () | method |
override protected function append(event:LogEvent):voidSends the events to the as3commons logging framework.
Parameters
event:LogEvent — Event used by Log5F
|