Search code examples
hibernatehibernate-4.xjboss-logging

Hibernate 4.x Logging Configuration


I'm trying to find somthing about Hibernate 4.x logging configuration using jboss-logging, not log4j. Can anybody helps me? I need to disable info logging...


Solution

  • JBoss logging seems to be a facade which delegates to an underlying logging framework. https://github.com/jboss-logging/jboss-logging/blob/master/src/main/java/org/jboss/logging/LoggerProviders.java has the source code for how jboss logging configures itself.

    So you must figure out which underlying framework jboss-logging is using and based on that you can figure out what configuration options apply.