It take me some time to figure out how to debug the JPA / EclipseLink implementation running on Wildfly. My goal was to log the SQL statements generated by EclipseLink.
It’s not necessary to modify the persistance.xml file. Just add into the standalone.xml file the following additional logger categories:
<logger category="org.eclipse.persistence.sql"> <level name="DEBUG"/> </logger> <logger category="org.jboss.as.jpa"> <level name="DEBUG"/> </logger>
And change the log level from the console-handler from ‘INFO’ to ‘DEBUG’
<console-handler name="CONSOLE"> <level name="INFO"/> <formatter> <named-formatter name="COLOR-PATTERN"/> </formatter> </console-handler>
Restart wildfly which is now logging all JPA information.