This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new dbe1d6767a7 Polished dbe1d6767a7 is described below commit dbe1d6767a7749ae5858e6dae8c12a2b41bf6906 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue Jun 10 15:39:55 2025 +0200 Polished --- core/camel-core-engine/src/main/docs/modules/eips/pages/toD-eip.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/camel-core-engine/src/main/docs/modules/eips/pages/toD-eip.adoc b/core/camel-core-engine/src/main/docs/modules/eips/pages/toD-eip.adoc index 4fd56d79efb..24d08c78e24 100644 --- a/core/camel-core-engine/src/main/docs/modules/eips/pages/toD-eip.adoc +++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/toD-eip.adoc @@ -228,7 +228,7 @@ from("direct:login") .toD("http:myloginserver:8080/login?userid=${header.userName}"); ---- -It Will essentially be optimized to (pseudo route): +It will essentially be optimized to (**internally** pseudo route): [source,java] ---- @@ -251,7 +251,7 @@ to provide dynamic values to override the uri in `toD`. If you want to use these In other words these headers are used internally by `toD` to carry the dynamic details of the endpoint. ==== -In case of problems then you can turn on DEBUG logging level on `org.apache.camel.processor.SendDynamicProcessor` which will log +In case of problems then you can turn on `DEBUG` logging level on `org.apache.camel.processor.SendDynamicProcessor` which will log during startup if `toD` was optimized, or if there was a failure loading the optimized component, with a stacktrace logged. [source,text]