Cargo : Debugging
This page last changed on Jun 30, 2006 by vmassol.
DefinitionExplain how to perform debugging when something doesn't work in Cargo. Indeed it can happen that the container does not start or stop as expected. Or that some deployable does not deploy fine. Or whatever else! Here is a short list of things you can do to try debugging the problem. Redirecting container output to a fileThe Container.setOutput(File) API allows you to redirect the container console (stdout) to a file. This is the first file you should check in case of problem. Example using the Java APIStarting Tomcat 4.x specifying an output console log file: LocalContainer container = new Tomcat4xLocalContainer( new CatalinaStandaloneLocalConfiguration("target/tomcat4x")); container.setHome("c:/apps/jakarta-tomcat-4.1.30"); container.setOutput("target/output.log"); container.start(); Use the container.setAppend(true|false) method to decide whether the log file is recreated or whether it is appended to, keeping the previous execution logs (by default, the file is recreated at every container start or stop). Example using the Ant APIStarting Tomcat 4.x specifying an output console log file: <cargo containerId="tomcat4x" home="c:/apps/jakarta-tomcat-4.1.30" action="start" output="target/output.log"/> Use the append="true|false" attribute for controlling the log file creation behavior. Generating Cargo logsSome Cargo classes support generation of logs. This is implemented through the notion of Logger. For example to turn on logging monitoring on a Container class, you can use: Logger fileLogger = new FileLogger(new File("c:/tmp/cargo.log"), true); container.setLogger(fileLogger); There are several Loggers that are readily available in the Cargo distribution:
Turning on container logsCargo is able to configure containers to generate various levels logs. There are 3 levels defined: "low", "medium" and "high" ("medium" is the default value). They represent the quantity of information you wish to have in the generated log file. You can tune container logging by using the following API:
container.setProperty(GeneralPropertySet.LOGGING, "medium");
The generated log files will then be found in the Working directory you have specified on the container (through the container.setWorkingDir() call). When using the Ant tasks, you can specify the log file by using the log attribute. For example:
<cargo containerId="resin3x" [...] log="target/cargo.log"/>
|
![]() |
Document generated by Confluence on Jun 02, 2010 22:47 |