Re: Recursive call to appender stackoverflow error

2015-12-11 Thread Remko Popma
Did this resolve the problem? On Friday, 11 December 2015, Remko Popma wrote: > 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

Re: Recursive call to appender stackoverflow error

2015-12-11 Thread Priya Ahuja
I only have log4j-slf4j-impl org.apache.logging.log4j log4j-api ${log4j.version} org.apache.logging.log4j log4j-core ${log4j.version} org.apache.logging.log4j

Re: Recursive call to appender stackoverflow error

2015-12-11 Thread Ralph Goers
The error message regarding the recursive call indicates that an appender is logging an event which is being routed to the same appender. Log4j detects that and ignores the logging event. But without seeing a stack trace it would be impossible to guess what is going on. I can’t even tell what