You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bu...@apache.org on 2013/10/21 16:19:30 UTC

svn commit: r883583 - in /websites/production/camel/content: book-component-appendix.html book-in-one-page.html cache/main.pageCache log.html

Author: buildbot
Date: Mon Oct 21 14:19:30 2013
New Revision: 883583

Log:
Production update by buildbot for camel

Modified:
    websites/production/camel/content/book-component-appendix.html
    websites/production/camel/content/book-in-one-page.html
    websites/production/camel/content/cache/main.pageCache
    websites/production/camel/content/log.html

Modified: websites/production/camel/content/book-component-appendix.html
==============================================================================
--- websites/production/camel/content/book-component-appendix.html (original)
+++ websites/production/camel/content/book-component-appendix.html Mon Oct 21 14:19:30 2013
@@ -10681,7 +10681,7 @@ log:org.apache.camel.example?level=DEBUG
 <p>The log formats the execution of exchanges to log lines. <br clear="none">
 By default, the log uses <tt>LogFormatter</tt> to format the log output, where <tt>LogFormatter</tt> has the following options:</p>
 <div class="confluenceTableSmall"><div class="table-wrap">
-<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showAll</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Quick option for turning all options on. (multiline, maxChars has to be manually set if to be used) </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangeId</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the unique exchange ID. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangePattern</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Sho
 ws the Message Exchange Pattern (or MEP for short). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showProperties</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the exchange properties. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showHeaders</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In message headers. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBodyType</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body Java type. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBody</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body. <
 /td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showOut</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an Out message, show the Out message. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an exception, show the exception message (no stack trace). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showCaughtException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has a caught exception, show the exception message (no stack trace). A caught exception is stored as a property on the exchange (using the key <tt>Exchange.EXCEPTION_CAUGHT</tt>) and for instance a <tt>doCatch
 </tt> can catch exceptions. See <a shape="rect" href="try-catch-finally.html" title="Try Catch Finally">Try Catch Finally</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStackTrace</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the stack trace, if an exchange has an exception. Only effective if one of <tt>showAll</tt>, <tt>showException</tt> or <tt>showCaughtException</tt> are enabled. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFiles</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.9:</b> Whether Camel should show file bodies or not (eg such as java.io.File). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFuture</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class=
 "confluenceTd"> Whether Camel should show <tt>java.util.concurrent.Future</tt> bodies or not. If enabled Camel could potentially wait until the <tt>Future</tt> task is done. Will by default not wait. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStreams</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.8:</b> Whether Camel should show stream bodies or not (eg such as java.io.InputStream). Beware if you enable this option then you may not be able later to access the message body as the stream have already been read by this logger. To remedy this you will have to use <a shape="rect" href="stream-caching.html" title="Stream caching">Stream caching</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>multiline</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If <tt>true</t
 t>, each piece of information is logged on a new line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>maxChars</tt> </td><td colspan="1" rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" class="confluenceTd"> Limits the number of characters logged per line. The default value is <tt>10000</tt> from <b>Camel 2.9</b> onwards. </td></tr></tbody></table>
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showAll</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Quick option for turning all options on. (multiline, maxChars has to be manually set if to be used) </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangeId</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the unique exchange ID. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangePattern</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Sho
 ws the Message Exchange Pattern (or MEP for short). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showProperties</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the exchange properties. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showHeaders</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In message headers. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>skipBodyLineSeparator</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.12.2:</b> Whether to skip line separators when logging the message body. This allows to log the message body in one line, setting this option to <tt>false</tt> will preserve any line separators from the body, which then will log the 
 body <em>as is</em>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBodyType</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body Java type. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBody</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showOut</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an Out message, show the Out message. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an exception, show
  the exception message (no stack trace). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showCaughtException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has a caught exception, show the exception message (no stack trace). A caught exception is stored as a property on the exchange (using the key <tt>Exchange.EXCEPTION_CAUGHT</tt>) and for instance a <tt>doCatch</tt> can catch exceptions. See <a shape="rect" href="try-catch-finally.html" title="Try Catch Finally">Try Catch Finally</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStackTrace</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the stack trace, if an exchange has an exception. Only effective if one of <tt>showAll</tt>, <tt>showException</tt> or <tt>showCaughtException</tt> are enabled. </td></
 tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFiles</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.9:</b> Whether Camel should show file bodies or not (eg such as java.io.File). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFuture</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Whether Camel should show <tt>java.util.concurrent.Future</tt> bodies or not. If enabled Camel could potentially wait until the <tt>Future</tt> task is done. Will by default not wait. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStreams</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.8:</b> Whether Camel should show stream bodies or not (eg such as java.io.InputStream). Bewa
 re if you enable this option then you may not be able later to access the message body as the stream have already been read by this logger. To remedy this you will have to use <a shape="rect" href="stream-caching.html" title="Stream caching">Stream caching</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>multiline</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If <tt>true</tt>, each piece of information is logged on a new line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>maxChars</tt> </td><td colspan="1" rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" class="confluenceTd"> Limits the number of characters logged per line. The default value is <tt>10000</tt> from <b>Camel 2.9</b> onwards. </td></tr></tbody></table>
 </div>
 </div>
 

Modified: websites/production/camel/content/book-in-one-page.html
==============================================================================
--- websites/production/camel/content/book-in-one-page.html (original)
+++ websites/production/camel/content/book-in-one-page.html Mon Oct 21 14:19:30 2013
@@ -32169,7 +32169,7 @@ log:org.apache.camel.example?level=DEBUG
 <p>The log formats the execution of exchanges to log lines. <br clear="none">
 By default, the log uses <tt>LogFormatter</tt> to format the log output, where <tt>LogFormatter</tt> has the following options:</p>
 <div class="confluenceTableSmall"><div class="table-wrap">
-<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showAll</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Quick option for turning all options on. (multiline, maxChars has to be manually set if to be used) </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangeId</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the unique exchange ID. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangePattern</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Sho
 ws the Message Exchange Pattern (or MEP for short). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showProperties</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the exchange properties. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showHeaders</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In message headers. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBodyType</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body Java type. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBody</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body. <
 /td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showOut</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an Out message, show the Out message. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an exception, show the exception message (no stack trace). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showCaughtException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has a caught exception, show the exception message (no stack trace). A caught exception is stored as a property on the exchange (using the key <tt>Exchange.EXCEPTION_CAUGHT</tt>) and for instance a <tt>doCatch
 </tt> can catch exceptions. See <a shape="rect" href="try-catch-finally.html" title="Try Catch Finally">Try Catch Finally</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStackTrace</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the stack trace, if an exchange has an exception. Only effective if one of <tt>showAll</tt>, <tt>showException</tt> or <tt>showCaughtException</tt> are enabled. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFiles</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.9:</b> Whether Camel should show file bodies or not (eg such as java.io.File). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFuture</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class=
 "confluenceTd"> Whether Camel should show <tt>java.util.concurrent.Future</tt> bodies or not. If enabled Camel could potentially wait until the <tt>Future</tt> task is done. Will by default not wait. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStreams</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.8:</b> Whether Camel should show stream bodies or not (eg such as java.io.InputStream). Beware if you enable this option then you may not be able later to access the message body as the stream have already been read by this logger. To remedy this you will have to use <a shape="rect" href="stream-caching.html" title="Stream caching">Stream caching</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>multiline</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If <tt>true</t
 t>, each piece of information is logged on a new line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>maxChars</tt> </td><td colspan="1" rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" class="confluenceTd"> Limits the number of characters logged per line. The default value is <tt>10000</tt> from <b>Camel 2.9</b> onwards. </td></tr></tbody></table>
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showAll</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Quick option for turning all options on. (multiline, maxChars has to be manually set if to be used) </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangeId</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the unique exchange ID. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangePattern</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Sho
 ws the Message Exchange Pattern (or MEP for short). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showProperties</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the exchange properties. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showHeaders</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In message headers. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>skipBodyLineSeparator</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.12.2:</b> Whether to skip line separators when logging the message body. This allows to log the message body in one line, setting this option to <tt>false</tt> will preserve any line separators from the body, which then will log the 
 body <em>as is</em>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBodyType</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body Java type. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBody</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showOut</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an Out message, show the Out message. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an exception, show
  the exception message (no stack trace). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showCaughtException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has a caught exception, show the exception message (no stack trace). A caught exception is stored as a property on the exchange (using the key <tt>Exchange.EXCEPTION_CAUGHT</tt>) and for instance a <tt>doCatch</tt> can catch exceptions. See <a shape="rect" href="try-catch-finally.html" title="Try Catch Finally">Try Catch Finally</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStackTrace</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the stack trace, if an exchange has an exception. Only effective if one of <tt>showAll</tt>, <tt>showException</tt> or <tt>showCaughtException</tt> are enabled. </td></
 tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFiles</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.9:</b> Whether Camel should show file bodies or not (eg such as java.io.File). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFuture</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Whether Camel should show <tt>java.util.concurrent.Future</tt> bodies or not. If enabled Camel could potentially wait until the <tt>Future</tt> task is done. Will by default not wait. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStreams</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.8:</b> Whether Camel should show stream bodies or not (eg such as java.io.InputStream). Bewa
 re if you enable this option then you may not be able later to access the message body as the stream have already been read by this logger. To remedy this you will have to use <a shape="rect" href="stream-caching.html" title="Stream caching">Stream caching</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>multiline</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If <tt>true</tt>, each piece of information is logged on a new line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>maxChars</tt> </td><td colspan="1" rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" class="confluenceTd"> Limits the number of characters logged per line. The default value is <tt>10000</tt> from <b>Camel 2.9</b> onwards. </td></tr></tbody></table>
 </div>
 </div>
 

Modified: websites/production/camel/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/camel/content/log.html
==============================================================================
--- websites/production/camel/content/log.html (original)
+++ websites/production/camel/content/log.html Mon Oct 21 14:19:30 2013
@@ -128,7 +128,7 @@ log:org.apache.camel.example?level=DEBUG
 <p>The log formats the execution of exchanges to log lines. <br clear="none">
 By default, the log uses <tt>LogFormatter</tt> to format the log output, where <tt>LogFormatter</tt> has the following options:</p>
 <div class="confluenceTableSmall"><div class="table-wrap">
-<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showAll</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Quick option for turning all options on. (multiline, maxChars has to be manually set if to be used) </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangeId</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the unique exchange ID. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangePattern</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Sho
 ws the Message Exchange Pattern (or MEP for short). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showProperties</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the exchange properties. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showHeaders</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In message headers. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBodyType</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body Java type. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBody</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body. <
 /td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showOut</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an Out message, show the Out message. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an exception, show the exception message (no stack trace). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showCaughtException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has a caught exception, show the exception message (no stack trace). A caught exception is stored as a property on the exchange (using the key <tt>Exchange.EXCEPTION_CAUGHT</tt>) and for instance a <tt>doCatch
 </tt> can catch exceptions. See <a shape="rect" href="try-catch-finally.html" title="Try Catch Finally">Try Catch Finally</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStackTrace</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the stack trace, if an exchange has an exception. Only effective if one of <tt>showAll</tt>, <tt>showException</tt> or <tt>showCaughtException</tt> are enabled. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFiles</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.9:</b> Whether Camel should show file bodies or not (eg such as java.io.File). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFuture</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class=
 "confluenceTd"> Whether Camel should show <tt>java.util.concurrent.Future</tt> bodies or not. If enabled Camel could potentially wait until the <tt>Future</tt> task is done. Will by default not wait. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStreams</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.8:</b> Whether Camel should show stream bodies or not (eg such as java.io.InputStream). Beware if you enable this option then you may not be able later to access the message body as the stream have already been read by this logger. To remedy this you will have to use <a shape="rect" href="stream-caching.html" title="Stream caching">Stream caching</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>multiline</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If <tt>true</t
 t>, each piece of information is logged on a new line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>maxChars</tt> </td><td colspan="1" rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" class="confluenceTd"> Limits the number of characters logged per line. The default value is <tt>10000</tt> from <b>Camel 2.9</b> onwards. </td></tr></tbody></table>
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showAll</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Quick option for turning all options on. (multiline, maxChars has to be manually set if to be used) </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangeId</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the unique exchange ID. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showExchangePattern</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Sho
 ws the Message Exchange Pattern (or MEP for short). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showProperties</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the exchange properties. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showHeaders</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In message headers. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>skipBodyLineSeparator</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.12.2:</b> Whether to skip line separators when logging the message body. This allows to log the message body in one line, setting this option to <tt>false</tt> will preserve any line separators from the body, which then will log the 
 body <em>as is</em>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBodyType</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body Java type. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showBody</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>true</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the In body. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showOut</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an Out message, show the Out message. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has an exception, show
  the exception message (no stack trace). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showCaughtException</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If the exchange has a caught exception, show the exception message (no stack trace). A caught exception is stored as a property on the exchange (using the key <tt>Exchange.EXCEPTION_CAUGHT</tt>) and for instance a <tt>doCatch</tt> can catch exceptions. See <a shape="rect" href="try-catch-finally.html" title="Try Catch Finally">Try Catch Finally</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStackTrace</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Show the stack trace, if an exchange has an exception. Only effective if one of <tt>showAll</tt>, <tt>showException</tt> or <tt>showCaughtException</tt> are enabled. </td></
 tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFiles</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.9:</b> Whether Camel should show file bodies or not (eg such as java.io.File). </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showFuture</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Whether Camel should show <tt>java.util.concurrent.Future</tt> bodies or not. If enabled Camel could potentially wait until the <tt>Future</tt> task is done. Will by default not wait. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>showStreams</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.8:</b> Whether Camel should show stream bodies or not (eg such as java.io.InputStream). Bewa
 re if you enable this option then you may not be able later to access the message body as the stream have already been read by this logger. To remedy this you will have to use <a shape="rect" href="stream-caching.html" title="Stream caching">Stream caching</a>. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>multiline</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> If <tt>true</tt>, each piece of information is logged on a new line. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>maxChars</tt> </td><td colspan="1" rowspan="1" class="confluenceTd">&#160;</td><td colspan="1" rowspan="1" class="confluenceTd"> Limits the number of characters logged per line. The default value is <tt>10000</tt> from <b>Camel 2.9</b> onwards. </td></tr></tbody></table>
 </div>
 </div>