[Crowd]

Documentation for Crowd 1.1. Documentation for other versions of Crowd is available too.
A common task when identifying Crowd problems is to turn up the log level. This section describes how to adjust the various Crowd log settings.
Crowd's logging output is classified by importance, with the levels being:
The default level is WARN, meaning warnings and errors are displayed. Sometimes it is useful to adjust this level to see more details.
The Crowd logging file will by default be available here:
atlassian-crowd-1.1.X\atlassian-crowd.log
crowd-webapp/WEB-INF/classes/log4j.properties.
log4j.properties file.When diagnosing a server problem you need to adjust Crowd's package logging be:
log4j.logger.com.atlassian.crowd=DEBUG
Crowd has specific loggers that allow you to review the incoming and outgoing messages to the Crowd security framework. This is useful in debugging your applications or to monitor how much traffic is being used by an integrated application.
To turn on the XFire in and out logging handler, add uncomment the following lines in your log4.properties file:
# Uncomment the line below to have the Crowd server output the incoming SOAP request method and parameters. log4j.logger.com.atlassian.crowd.integration.service.soap.xfire.XFireOutLoggingMethodHandler=DEBUG # Uncomment the line below to have the Crowd server output the outgoing SOAP request method and parameters. log4j.logger.com.atlassian.crowd.integration.service.soap.xfire.XFireInLoggingMethodHandler=DEBUG