In the N1SPS-RemoteAgent-home/agent/config/logger_config.xml file, add the appropriate code.
These logger changes must be added to the logger_config.xml file after the appender section and before the root section.
The level value can equal error, warn , info or debug. The debug option provides a more verbose output.
Log when a differential deployment creates a component
<logger name="com.sun.n1.sps.resource.deploy.filechanges.actual.creates"> <level value="info"/> <appender-ref ref="STDOUT"/> </logger> |
Log when a differential deployment deletes a component
<logger name="com.sun.n1.sps.resource.deploy.filechanges.actual.deletes"> <level value="info"/> <appender-ref ref="STDOUT"/> </logger> |
Log differential deployment optimizations
<logger name="com.sun.n1.sps.resource.deploy.filechanges.actual.optimizations"> <level value="debug"/> <appender-ref ref="STDOUT"/> /logger> |
Run a plan using the differential deployment feature.
View the messages in the N1SPS-RemoteAgent-home/agent/bin/cr_agent.out file.
The following example shows that the file /tmp/test/file3 existed on the remote agent and was updated with a newer version. First the file was deleted, then the new version was created.
com.sun.n1.sps.resource.deploy.filechanges.actual.deletes (DeployLogger.java:83) - file /tmp/test/file3 is being deleted. (020613) 2006-02-02 15:16:33,950 INFO [ROX:ThrPool:1:NetPool-Worker-3] com.sun.n1.sps.resource.deploy.filechanges.actual.creates (DeployLogger.java:83) - file /tmp/test/file3 is being created. (020605) |