Thanks for the link. I looked at the code there and found out what my problem was. I was
using PropertyConfigurator instead of DOMConfigurator. Here's the working code
@Name("configLogger")
| @Startup
| @Scope(APPLICATION)
| public class ConfigLog4j{
|
| @Create
| public void init() {
| DOMConfigurator.configure("c:/log4j.xml");
| }
| }
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4112304#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...