Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
xml
xml
        <route id="baz">
            <from uri="direct:baz"/>
            <log message="Me Got ${body}" loggingLevel="FATAL" logName="cool"/>
            <to uri="mock:baz"/>
        </route>

Using slf4j Marker

Available as of Camel 2.9

You can specify a marker name in the DSL

Code Block
xml
xml

        <route id="baz">
            <from uri="direct:baz"/>
            <log message="Me Got ${body}" loggingLevel="FATAL" logName="cool" marker="myMarker"/>
            <to uri="mock:baz"/>
        </route>
Include Page
CAMEL:Using This Pattern
CAMEL:Using This Pattern