The problem is that these x values are all at the top of the jul-to-slf4j intervals, but java.util.logging.Logger.isLoggable will reject any message whose level is less than this x. So jul-to-slf4j will log a FINER message as DEBUG, but if you set the slf4j level to DEBUG, then FINER messages are rejected.
OK. That sounds like a bug. |