1)As per your setting:
<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
  |     <param name="Threshold" value="FATAL"/>
  |     <param name="Target" value="System.out"/>
  | 
  |     <layout class="org.apache.log4j.PatternLayout">
  |       <!-- The default pattern: Date Priority [Category] Message\n -->
  |       <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] 
%m%n"/>
  |     </layout>
  |   </appender>

The threshold attribute of the console appender has been set to FATAL, which 
means that anything lesser than this(i.e. debug, info etc...) will NOT be 
logged to the console.

Change it to:

<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
  |     <param name="Threshold" value="DEBUG"/>
  |     <param name="Target" value="System.out"/>
  | 
  |     <layout class="org.apache.log4j.PatternLayout">
  |       <!-- The default pattern: Date Priority [Category] Message\n -->
  |       <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] 
%m%n"/>
  |     </layout>
  |   </appender>

2) As per your setting:
<category name="org.jboss.cache">
  |     <priority value="FATAL" class="org.jboss.logging.XLevel"/>
  |   </category>

Again, anything below FATAL level logged by from the org.jboss.cache package 
hierarchy will NOT be logged. Change this to

<category name="org.jboss.cache">
  |     <priority value="DEBUG"/>
  |   </category>

Same is the case with org.jgroups. Change it to:

<category name="org.jgroups">
  |       <priority value="DEBUG"/>
  |    </category>

3)
anonymous wrote : The output was catched by redirecting output of stderr (a DOS 
console) to a file.

As per the above settings, all the logs will be generated to stdout and NOT to 
stderr. So at all you want to redirect the logs then you should redirect it 
from stdout






View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3960315#3960315

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3960315
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to