This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit d552f0491bae7eeacabb0c86c546404c0444032f Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Fri Jul 26 04:54:20 2019 +0200 CAMEL-13788: Deprecate OUT in favour of getMessage on Message API. --- .../camel-log/src/main/docs/log-component.adoc | 3 +-- .../endpoint/dsl/LogEndpointBuilderFactory.java | 22 ---------------------- 2 files changed, 1 insertion(+), 24 deletions(-) diff --git a/components/camel-log/src/main/docs/log-component.adoc b/components/camel-log/src/main/docs/log-component.adoc index 37ca27d..f52a8d0 100644 --- a/components/camel-log/src/main/docs/log-component.adoc +++ b/components/camel-log/src/main/docs/log-component.adoc @@ -94,7 +94,7 @@ with the following path and query parameters: |=== -==== Query Parameters (28 parameters): +==== Query Parameters (27 parameters): [width="100%",cols="2,5,^1,2",options="header"] @@ -122,7 +122,6 @@ with the following path and query parameters: | *showFiles* (formatting) | If enabled Camel will output files | false | boolean | *showFuture* (formatting) | If enabled Camel will on Future objects wait for it to complete to obtain the payload to be logged. | false | boolean | *showHeaders* (formatting) | Show the message headers. | false | boolean -| *showOut* (formatting) | If the exchange has an out message, show the out message. | false | boolean | *showProperties* (formatting) | Show the exchange properties. | false | boolean | *showStackTrace* (formatting) | Show the stack trace, if an exchange has an exception. Only effective if one of showAll, showException or showCaughtException are enabled. | false | boolean | *showStreams* (formatting) | 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 Stream Caching. | false | boolean diff --git a/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/LogEndpointBuilderFactory.java b/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/LogEndpointBuilderFactory.java index 06cacd4..9d85afa 100644 --- a/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/LogEndpointBuilderFactory.java +++ b/core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/LogEndpointBuilderFactory.java @@ -459,28 +459,6 @@ public interface LogEndpointBuilderFactory { return this; } /** - * If the exchange has an out message, show the out message. - * - * The option is a: <code>boolean</code> type. - * - * Group: formatting - */ - default LogEndpointBuilder showOut(boolean showOut) { - setProperty("showOut", showOut); - return this; - } - /** - * If the exchange has an out message, show the out message. - * - * The option will be converted to a <code>boolean</code> type. - * - * Group: formatting - */ - default LogEndpointBuilder showOut(String showOut) { - setProperty("showOut", showOut); - return this; - } - /** * Show the exchange properties. * * The option is a: <code>boolean</code> type.