JBoss magazines are just a logging façade. To configure loggers, for example, use / add handlers, you need a log manager such as JBoss Log Manager, JUL log manager, logback or log4j.
JBoss Logging will try to discover which log manager is being used. You can specify which log manager you want to use with the system property org.jboss.logging.provider. Valid values for `org.jboss.logging.provider 'are:
- jboss - for JBoss log manager
- jdk - for JUL log manager
- log4j - for log4j log manager
- slf4j - for a log with slf4j
Hibernate uses JBoss Logging for its i18n capabilities, vararg logging methods and the ability to not become attached to the log manager.
Of course, you can absolutely use JBoss Logging in your project. If you want to configure logging handlers, you also have to use the log manager.
source
share