Increasing the logging level

Additional logs are available for diagnosing communication issues between Rational® DOORS® Web Access and configured integrations. The logs provide information to help diagnose issues. They do not provide a complete record of every request to and from Rational DOORS Web Access.

The additional loggers are located in /festival/config/festival-log4j.xml in the installation directory of the Rational DOORS Web Access server. New logs are written to the default log location.

You turn on additional logging by changing the level value from INFO to DEBUG in festival-log4j.xml. The following fragment shows the default settings in the file.
<!--  Change this to DEBUG to log the primary oslc request details  -->
		<logger name="com.telelogic.dwa.web.mvc.filter.LogRequestFilter">
				<level value="INFO"/>
				<appender-ref ref="REQUEST_LOG"/>
		</logger>

		<!--  Change this to DEBUG to log the primary oslc response details  -->
		<logger name="com.telelogic.dwa.ui.mvc.view.http.HttpView">
				<level value="INFO"/>
				<appender-ref ref="RESPONSE_LOG"/>
		</logger>

		<!--  Default logger  -->
		<root>
				<priority value="info"/>
				<appender-ref ref="consoleAppender"/>
				<appender-ref ref="fileAppender"/>
		</root>

Only turn on logging for the areas required, and always leave the default logger with the default INFO log level.


Feedback