I managed to get the next magazine
Hibernate: insert into ORGANIZATIONALUNITCATALOG (ID, SYSTEMID) values (null, ?)
[main] DEBUG org.hibernate.type.LongType - binding '0' to parameter: 1
after setting log4j properties as
log4j.logger.org.hibernate.sql=DEBUG
log4j.logger.org.hibernate.type=DEBUG
Is it possible to specify hibernate 3.2.x to display the binding column name instead of the column number? those. I would like to see the log line as
[main] DEBUG org.hibernate.type.LongType - binding '0' to parameter: SYSTEMID
source
share