| Function | Defined By | ||
|---|---|---|---|
mergeSetups(... setups):ILogSetup
Merges multiple setups into one. | org.as3commons.logging.setup | ||
rule(target:ILogTarget, name:RegExp = null, person:RegExp = null, level:LogSetupLevel = null):SimpleRegExpSetup
Creates a regular expression based rule setup. | org.as3commons.logging.setup | ||
| mergeSetups | () | function |
public function mergeSetups(... setups):ILogSetup| Since : | 2.6 |
Merges multiple setups into one.
Parameters
... setups |
ILogSetup |
See also
| rule | () | function |
public function rule(target:ILogTarget, name:RegExp = null, person:RegExp = null, level:LogSetupLevel = null):SimpleRegExpSetup| Since : | 2.6 |
Creates a regular expression based rule setup.
LOGGER_FACTORY.setup = rule(new SOSTarget, /^org\.as3commons\.logging/); // applies the target just to org.as3commons.logging
Parameters
target:ILogTarget | |
name:RegExp (default = null) | |
person:RegExp (default = null) | |
level:LogSetupLevel (default = null) |
SimpleRegExpSetup |
See also