Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification.
The following page has been changed by lresende: http://wiki.apache.org/ws/Tuscany/TuscanyJava/DAS_Java_Overview/Improved_logging ------------------------------------------------------------------------------ Note: As a performance enhancement, please surround your debug code with a check to see if debug is enabled or not. - '''Configuring DAS logging''' + '''Configuring DAS logging (log4j)''' - - TODO + ''Configuring with Tomcat'' + There are two ways to configure log4j in Tomcat : + + - Having a global log4j.properties inside %CATALINA_HOME%\common\classes + + - Having a global log4j.properties inside your own web app at WEB-INF\classes + + + + '''Sample log4j.properties''' + + # Set root logger level to DEBUG and its only appender to A1. + log4j.rootLogger=INFO, A1 + + # A1 is set to be a ConsoleAppender. + log4j.appender.A1=org.apache.log4j.ConsoleAppender + + # A1 uses PatternLayout. + log4j.appender.A1.layout=org.apache.log4j.PatternLayout + log4j.appender.A1.layout.ConversionPattern=[DAS RDB] - %c{1}.%M (%L) : %m %n + + # Print only messages of level WARN or above in the package com.foo. + log4j.logger.org.apache.tuscany=OFF + + + + For further information, please follow the link : [http://tomcat.apache.org/faq/logging.html Tomcat FAQ - Logging] + --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
