Author: markt Date: Fri Nov 10 17:43:44 2006 New Revision: 473619 URL: http://svn.apache.org/viewvc?view=rev&rev=473619 Log: Fix bug 40874. Correct log4j example. Patch by Franck Borel.
Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml tomcat/container/tc5.5.x/webapps/docs/logging.xml Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?view=diff&rev=473619&r1=473618&r2=473619 ============================================================================== --- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original) +++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Fri Nov 10 17:43:44 2006 @@ -151,6 +151,10 @@ <bug>40633</bug>: Remove references to the DefaultContext from the documentation. (markt) </fix> + <fix> + <bug>40874</bug>: Correct log4j configuration in documentation webapp. + Patch provided by Franck Borel. (markt) + </fix> </changelog> </subsection> <subsection name="Cluster"> Modified: tomcat/container/tc5.5.x/webapps/docs/logging.xml URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/logging.xml?view=diff&rev=473619&r1=473618&r2=473619 ============================================================================== --- tomcat/container/tc5.5.x/webapps/docs/logging.xml (original) +++ tomcat/container/tc5.5.x/webapps/docs/logging.xml Fri Nov 10 17:43:44 2006 @@ -63,14 +63,13 @@ <li>Create a file called log4j.properties with the following content and save it into common/classes. <source> - log4j.rootLogger=debug, R <br /> + log4j.rootLogger=DEBUG, R <br /> log4j.appender.R=org.apache.log4j.RollingFileAppender <br /> log4j.appender.R.File=${catalina.home}/logs/tomcat.log <br /> log4j.appender.R.MaxFileSize=10MB <br /> log4j.appender.R.MaxBackupIndex=10 <br /> log4j.appender.R.layout=org.apache.log4j.PatternLayout <br /> - log4j.appender.R.layout.ConversionPattern=%p %t %c - %m%n <br /> - log4j.logger.org.apache.catalina=DEBUG, R + log4j.appender.R.layout.ConversionPattern=%p %t %c - %m%n </source> </li> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]