And I set my log4j.xml file to:
<log4j:configuration
xmlns:log4j="http://jakarta.apache.org/log4j/"
debug="true">
|
| <appender name="console"
class="org.apache.log4j.ConsoleAppender">
| <param name="Target" value="System.out"/>
| <layout class="org.apache.log4j.PatternLayout">
| <param name="ConversionPattern" value="%-5p %c{1} -
%m%n"/>
| </layout>
| </appender>
|
| <root>
| <priority value ="info" />
| <appender-ref ref="console" />
| </root>
|
| </log4j:configuration>
|
which should log everything above info level. All my log messages are at
"severe" level. None of them show up.
I think this is a bug in JBoss.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4002143#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...