I am looking for a wrapper around a standard Flex Logging environment. I would like to have a declaration and use a logger object like log4j. Sort of:
private static const log:ILogger = getLogger(SomeClass);
and just
log.debug("Some {0} happened {1} because of {2}", param1, param2, param3);
It will also be useful to have an xml or text configuration, for example:
org.company.package1=DEBUG org.company.package2=ERROR
source share