Module io.jstach.rainbowgum.jbosslogging


module io.jstach.rainbowgum.jbosslogging
Rainbow Gum JBoss Logging integration: a native LoggerProvider implementation, not a bridge through SLF4J. JBoss Logging does not auto-select its own SLF4J provider just because slf4j-api is on the classpath - confirmed by decompiling org.jboss.logging.LoggerProviders.findProvider(), it requires -Dorg.jboss.logging.provider=slf4j set before that class loads, otherwise it silently falls back to java.util.logging while still reporting isXEnabled() correctly - a real footgun since nothing looks broken. This module is instead picked up by the same ServiceLoader lookup findProvider() already does before falling back to any of that, so no extra configuration is required.