How do I configure logback not to log messages from loggers in package org.package and it's subpackages unless their level is WARN or ERROR?
And why isn't the following configuration not working for you?
<configuration>
<logger name="org.package" level="WARN"/>
<root level="ALL">
<appender class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{ISO8601} | %-5level | %thread | %logger{1} | %m%n</pattern>
</encoder>
</appender>
</root>
</configuration>