Flex Logging Framework

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 
+4
source share
1 answer

I have never used it, but it looks like what you want: log4as3

+4
source

Source: https://habr.com/ru/post/1344887/


All Articles