INT-729 Added log4j configuration to the quote, ws, and xml samples.

This commit is contained in:
Mark Fisher
2009-07-16 23:09:43 +00:00
parent cb0307a12b
commit 1be9b86a59
12 changed files with 129 additions and 19 deletions

View File

@@ -19,6 +19,10 @@
<level value="warn" />
</logger>
<logger name="org.springframework.integration.file">
<level value="warn" />
</logger>
<!-- Root Logger -->
<root>
<priority value="warn" />

View File

@@ -23,7 +23,9 @@
output-channel="filesOut"
ref="handler"/>
<file:outbound-channel-adapter id="filesOut" directory="${java.io.tmpdir}/spring-integration-samples/output"/>
<file:outbound-channel-adapter id="filesOut"
directory="${java.io.tmpdir}/spring-integration-samples/output"
delete-source-files="true"/>
<bean id="handler" class="org.springframework.integration.samples.filecopy.Handler"/>