Ideally nothing in druid would explicitly depend on anything other than slf4j for logging. But io.druid.initialization.LogLevelAdjuster explicitly uses
import org.apache.log4j.Level;
import org.apache.log4j.Logger;
This makes using alternate slf4j implementations like logback much harder.
Ideally nothing in druid would explicitly depend on anything other than slf4j for logging. But
io.druid.initialization.LogLevelAdjusterexplicitly usesThis makes using alternate slf4j implementations like logback much harder.