First, don't use the root logger. Instead, get a logger for your class, like this
(using commons logging):
private Log log = LogFactory.getLog(XXX.class);
then in your jboss-log4j.xml, add:
<category name="your.package.name">
| <priority value="DEBUG"/>
| </category>
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4163743#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...