Hi,
I’ve been testing AS7 logging system for our product. I got strange logging information after the web application was deployed. The web application loaded Spring context when application was started up. It seemed system could not produce
correct logging information once the Spring context of web application was loaded. Something was wrong after that.
It created information like:
…
<Aug 22, 2011 4:53:43 PM> <INFO> <org.jboss.as.server.deployment.DeploymentHandlerUtil$4 execute> <Replaced deployment "%s" with deployment "%s">
…
In standalone.xml, it defined pattern like “%d{HH:mm:ss,SSS} %-5p [%c %M] (%t) %s%E%n”. As you know, there were two problems in the logging information:
1) %t was not replaced by correct thread information
2) %s%E%n was not replaced by relevant information.
I’m not sure if anyone has reported similar issue already. Is there anything I can do for further investigation and find a workaround?
Thank you!
Regards,
Bill