When troubleshooting DeployR problems, it is often necessary to collect the production.log that includes debug level information to provide more detail on the problem. By default, the production.log logs only 'error' and 'info' level messages. To enable debug level tracing for the DeployR production.log on Linux and collect useful diagnostic information, do the following:
- Stop the Apache Tomcat daemon:
# /opt/deployr/7.2.0/tomcat/tomcat7.sh stop
- Edit /opt/deployr/7.2.0/deployr/deployr.groovy and change the two occurrences of the word 'info' in the log4j stanza to 'debug'.
From:to:root {
info 'stdout', 'logfile'
}
info'com.revo.phoenix'Save the deployr.groovy file.root {
debug 'stdout', 'logfile'
}
debug'com.revo.phoenix' - Restart the Apache Tomcat daemon:
/opt/deployr/7.2.0/tomcat/tomcat7.sh start
- Recreate the reported DeployR problem.
- As in step 1, stop the Apache Tomcat daemon to flush all messages to the production.log file.
- Run the support data collection tool, /opt/deployr/7.2.0/diagnostic/diagnostics.sh. This tool (new in DeployR 7.2) will collect the debug production.log among other diagnostic information useful for troubleshooting and package it into C/opt/deployr/7.2.0/diagnostic/diagnostics.tar.gz. Provide this diagnostics.tar.gz file to support.
- Edit /opt/deployr/7.2.0/deployr/deployr.groovy and restore the logging level from 'debug' to 'info' to reduce production.log output. Restart the Apache Tomcat daemon.