You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2011/11/22 14:27:51 UTC

svn commit: r1204983 - /camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/logProcessorTest.xml

Author: davsclaus
Date: Tue Nov 22 13:27:50 2011
New Revision: 1204983

URL: http://svn.apache.org/viewvc?rev=1204983&view=rev
Log:
CAMEL-4607: Added support for sl4j Marker to log DSL. Thanks to Taariq for the patch.

Modified:
    camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/logProcessorTest.xml

Modified: camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/logProcessorTest.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/logProcessorTest.xml?rev=1204983&r1=1204982&r2=1204983&view=diff
==============================================================================
--- camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/logProcessorTest.xml (original)
+++ camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/logProcessorTest.xml Tue Nov 22 13:27:50 2011
@@ -42,6 +42,12 @@
             <to uri="mock:baz"/>
         </route>
 
+        <route id="wombat">
+            <from uri="direct:wombat"/>
+            <log message="Me Got ${body}" loggingLevel="INFO" logName="cool" marker="myMarker"/>
+            <to uri="mock:wombat"/>
+        </route>
+
     </camelContext>
 
 </beans>