Thanks, that helped. In case someone else comes across this thread looking to
do the same thing in the future, I ended up making two changes in addition to
the one in my initial message. First, I edited conf/log4j.xml and added:
<appender name="DEBUGCONSOLE" class="org.apache.log4j.ConsoleAppender">
| <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
| <param name="Target" value="System.out"/>
| <param name="Threshold" value="DEBUG"/>
|
| <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>
|
| <category name="org.jboss.web">
| <priority value="DEBUG"/>
| <appender-ref ref="DEBUGCONSOLE" />
| </category>
That causes Tomcat's debug messages to be printed to the console without doing
the same for all the other modules.
Next, I extracted the file
org/jboss/web/tomcat/tc5/session/LocalStrings.properties from
tomcat50-service.jar and moved it into org/jboss/web/tomcat/session (under the
deploy/jbossweb-tomcat50.sar directory). That prevents the error message I
quoted, and allows Tomcat to display a few additional debug messages.
Hope that's helpful to someone. Thanks, janilsal, for the pointer.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3855037#3855037
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3855037
-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
_______________________________________________
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development