GetUsername
GetUsername

Reputation: 1067

Flex logging framework

I'm looking for a wrapper around the standard Flex Logging framework
I would like to have a "log4j" style logger object declaration and usage. Something like:

private static const log:ILogger = getLogger(SomeClass);

and the just

log.debug("Some {0} happened {1} because of {2}", param1, param2, param3);

Also it will be good to have a xml or text configuration, like:

org.company.package1=DEBUG
org.company.package2=ERROR

Upvotes: 4

Views: 506

Answers (1)

splash
splash

Reputation: 13327

I never used it, but it seems to be what you want: log4as3

Upvotes: 4

Related Questions