Description
While testing the CAMEL OSGI Example, the expected output differed than what was noted in the README.txt file.
The readme file states:
"Once the example is running, periodic events are routed to the transform
method of the MyTransform class and you should see output similar to the
following being logged to your console screen:
>>>> MyTransform set body: Tue Aug 11 16:56:06 BST 2009
>>>> MyTransform set body: Tue Aug 11 16:56:08 BST 2009
>>>> MyTransform set body: Tue Aug 11 16:56:10 BST 2009"
==================================
However, the actual output was as follows:
...
>>>> MyTransform set body: [Date]
>>>> JavaDSL set body: [Date]
>>>> MyTransform set body: [Date]
>>>> JavaDSL set body: [Date]
>>>> MyTransform set body: [Date]
>>>> JavaDSL set body: [Date]"
...
======================================
What is JavaDSL doing and why isn't the related output represented in the README.txt file?
See attachment
Thanks!