How to log bind values in 6.x

In earlier versions of hibernate I could use:

<Logger name=“org.hibernate.type.descriptor.sql.BasicBinder” level=“trace” additivity=“false”

and/or

<Logger name=“org.hibernate.type” level=“trace” additivity=“false”

to see the values of the bind variable Hibernate was using however in version 6.6.2 seems no longer the case. what package.class do I need to use now?

thanks

JDBC value binding uses the org.hibernate.orm.jdbc.bind logger. If you also want to log extracted values from the database, you can use org.hibernate.orm.jdbc.extract.

Thank You! worked as expected