I use wildfly with EclipseLink and I want to trace SQL statements. I configured EclipseLink according to documentation, all work fine except the SQL logs. I added these properties in my persistence.xml:
<properties>
<property name="eclipselink.logging.level.sql" value="FINE" />
<property name="eclipselink.logging.parameters" value="true" />
<property name="eclipselink.debug" value="OFF" />
<property name="eclipselink.weaving" value="static" />
<property name="eclipselink.logging.logger" value="DefaultLogger" />
</properties>
but no SQL logs. What am I doing wrong?