quarkus.hibernate-orm.log.bind-parameters - don't work

Viewed 1280

I migrated from Quarkus version 1.10.5.Final to 1.13.3.Final and the quarkus.hibernate-orm.log.bind-parameters=true property stopped working.

When the application starts I receive the following warning:

WARN  [io.qua.run.log.LoggingSetupRecorder] (Quarkus Main Thread) Log level TRACE for category 'org.hibernate.type.descriptor.sql.BasicBinder' set below minimum logging level DEBUG, promoting it to DEBUG

Until version 1.10.5.Final this worked fine.

1 Answers

On the Quarkus logging guide I've found that I must change the quarkus.log.min-level property:

enter image description here

So I just changed to TRACE and everything worked fine:

quarkus.log.min-level=TRACE
quarkus.hibernate-orm.log.bind-parameters=true
Related