You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2021/08/17 07:30:11 UTC

[camel] 04/15: Polish and cleanup documentation

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

commit a4fdb3e8abb098fd157088275bf4a4b7417b2567
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Aug 16 16:49:26 2021 +0200

    Polish and cleanup documentation
---
 docs/user-manual/modules/ROOT/pages/testing.adoc | 10 ----------
 docs/user-manual/modules/ROOT/pages/tracer.adoc  |  8 ++++----
 2 files changed, 4 insertions(+), 14 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/testing.adoc b/docs/user-manual/modules/ROOT/pages/testing.adoc
index 7555484..688e44f 100644
--- a/docs/user-manual/modules/ROOT/pages/testing.adoc
+++ b/docs/user-manual/modules/ROOT/pages/testing.adoc
@@ -1,13 +1,3 @@
-ifdef::env-github[]
-:icon-frown: :frowning:
-:icon-smile: :smiley:
-endif::[]
-ifndef::env-github[]
-:icons: font
-:icon-frown: icon:frown-o[fw,role=yellow]
-:icon-smile: icon:smile-o[fw,role=yellow]
-endif::[]
-
 [[Testing-Testing]]
 = Testing
 
diff --git a/docs/user-manual/modules/ROOT/pages/tracer.adoc b/docs/user-manual/modules/ROOT/pages/tracer.adoc
index c87a789..9aa1fbc 100644
--- a/docs/user-manual/modules/ROOT/pages/tracer.adoc
+++ b/docs/user-manual/modules/ROOT/pages/tracer.adoc
@@ -1,15 +1,15 @@
 = Tracer
 
 Camel's tracer is used for logging message details during routing, where
-you can see the route path of each message as they happens. Details of the message is also logged such as the message body.
+you can see the route path of each message as they happen. Details of the message is also logged such as the message body.
 
 == Formatting
 
 The tracer formats the execution of exchanges to log lines. They are
-logged at *`INFO`* level in the log category:
-*`org.apache.camel.Tracing`*. 
+logged at `INFO` level in the log category: `org.apache.camel.Tracing`.
 
-The message information from the Exchange is formatted using `ExchangeFormatter` and the default implementation has many options you can configure. See the source code/javadoc of the `org.apache.camel.support.processor.DefaultExchangeFormatter` class.
+The message information from the Exchange is formatted using `ExchangeFormatter` and the default implementation
+has many options you can configure accordingly to the https://www.javadoc.io/doc/org.apache.camel/camel-support/latest/org/apache/camel/support/processor/DefaultExchangeFormatter.html[javadoc].
 
 == Enabling