I am confused as to why INFO statements are making it to the Console. Here is the general setup:
<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
<param name="Target" value="System.out"/>
<param name="Threshold" value="DEBUG"/>
<layout .../>
</appender>
<appender name="REST_LOG" class="org.apache.log4j.DailyRollingFileAppender">
<param name="File" value="/logs/rest.log" />
<param name="Threshold" value="INFO" />
....
</appender>
<category name="xyz.web">
<priority value="WARN" />
<appender-ref ref="CONSOLE" />
</category>
<category name="xyz.web.rest">
<priority value="INFO" />
<appender-ref ref="REST_LOG" />
</category>
So I want INFO and above statements to only do to REST_LOG and WARN statements and above to go to REST_LOG and CONSOLE. What I am seeing is INFO statements from xyz.web.rest in the REST_LOG as expected but also seeing INFO statements from xyz.web.rest in CONSOLE which I wasn't expecting.
Can somebody explain what is going on?