Our current project has no log4j jars, we use JDK logging API only. Now i needed to see the values of HQL statements, which are currently displayed with "?","?".
I found a lot of tips, using LOG4J. But no solution found with JDK:---((
I have set the following in logging.properties
:
org.hibernate.level=TRACE
org.hibernate.SQL.level = TRACE
.level=TRACE
But it had no effect. If I set the INFO level, so all WARNs, that I send for tests, will NOT be visible. Thus, logging.properties
is bound to Java class path
Does anybody have any ideas?