We are using OpenJPA in our application and we are getting the below error trace logs in the application server console.
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
at java.lang.Thread.run(Thread.java:736)
addRegisterClassListener + [org.apache.openjpa.jdbc.meta.MappingRepository@2100210] [BEFORE SIZE 3] [AFTER SIZE 4]
java.lang.Throwable
at org.apache.openjpa.enhance.PCRegistry.printToSystemOut(PCRegistry.java:85)
at org.apache.openjpa.enhance.PCRegistry.addRegisterClassListener(PCRegistry.java:63)
at org.apache.openjpa.kernel.AbstractBrokerFactory.makeReadOnly(AbstractBrokerFactory.java:641)
The OpenJPA logs are configured to route all trace logs to a application specific log file. However these logs are still going to the appserver console logs.
Also I'm not able to find out the method printTpSystemOut in PCRegistry class of openJPA source.
What could be the issue here? Or Am I missing something very obvious in this trace.