I want to see the actual parameters of my SQL queries when using Hibernate. I add this to my logback.xml file to see requests (with question marks):
<logger name="org.hibernate.type" level="TRACE" />
but has no effect.
Is any special configuration required?
OnConsoleStatusListener shows me the correct configuration
23:48:15,246 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [org.hibernate.type] to TRACE
but is not inferred from the org.hibernate.type package.
I am using Spring with Jpa.
source share