The missing method is debugf that takes a String and int parameter:
https://github.com/hibernate/hibernate- ... s.java#L34The CoreMessageLogger is extends the BasicLogger
https://github.com/hibernate/hibernate- ... r.java#L59The BasicLogger is provided by a shared library:
import org.jboss.logging.BasicLogger;
The desired version is 'org.jboss.logging:jboss-logging:3.3.0.Final'
https://github.com/hibernate/hibernate- ... gradle#L50Presumably somewhere on your class path is an older version of jboss-logging that doesn't have the required method. Audit your project dependency versions (maven/gradle/etc) and anything provided directly by your container.
It looks like this method was introduced in version 3.3.0 "[JBLOGGING-110] Add debugf and tracef methods for ints and longs."
Any version less than 3.3.0 would produce the exception that you're seeing.
https://github.com/jboss-logging/jboss- ... f5919ccceb