Unable to lookup java:comp/env/log4j/context-name

2015-12-10 Thread Mike Calmus
We are moving from Weblogic (10g) to JBoss (EAP6). The server is set to use the JndiContextSelector. All the required properties are set in the web.xml. With apps that have EJBs or web services, JBoss seems to be initializing the code as it is being deployed. Because our base web service classes

Re: Bizarre performance in log4j2

2015-12-10 Thread Strong Su
Hello everyone, We re-test log4j2's performance in our system from the very beginning. In our case, there two factors which will decrease the performance heavily. 1. %c or %class As Remko said, the information of location(you can see the log4j2.xml above) will hurt async logger badly. And

[ANNOUNCEMENT] Apache Log4j 2.5 released

2015-12-10 Thread Ralph Goers
The Apache Log4j 2 team is pleased to announce the Log4j 2.5 release! Apache log4j is a well known framework for logging application behavior. Log4j 2 is an upgrade to Log4j that provides significant improvements over its predecessor, Log4j 1.x, and provides many other modern features such as

Recursive call to appender stackoverflow error

2015-12-10 Thread Priya Ahuja
Hi, Any idea why I am seeing stackoverflow error? I am using log4j2 and LOGFILE is my rolling file appender. Exception in thread "pool-28-thread-2-workitem-HOST-cf95a544-c4b1-4084-861b-80e4ed4f4045-workitem-HOST-56de5b12-2d80-49c8-8b21-90433c89a2a1" java.lang.StackOverflowError Exception in

Re: Recursive call to appender stackoverflow error

2015-12-10 Thread Remko Popma
You may have both the log4j-to-slf4j adapter jar and the log4j-slf4j-impl jar on the classpath. They will route calls to each other. You need to remove one of them. Sent from my iPhone > On 2015/12/11, at 10:55, Priya Ahuja wrote: > > Hi, > > Any idea why I am seeing