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 2022/12/23 05:29:23 UTC

[camel] branch main updated: Fix spelling mistake (#8942)

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 fb609ed80f7 Fix spelling mistake (#8942)
fb609ed80f7 is described below

commit fb609ed80f776efe71ecb5d2f116f772bdf1c95f
Author: Chandramouli <co...@gmail.com>
AuthorDate: Fri Dec 23 10:58:34 2022 +0530

    Fix spelling mistake (#8942)
    
    Fix spelling mistake of `LogLevel`
---
 core/camel-core-engine/src/main/docs/modules/eips/pages/log-eip.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-core-engine/src/main/docs/modules/eips/pages/log-eip.adoc b/core/camel-core-engine/src/main/docs/modules/eips/pages/log-eip.adoc
index 53bb9404fbd..f30003f74d5 100644
--- a/core/camel-core-engine/src/main/docs/modules/eips/pages/log-eip.adoc
+++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/log-eip.adoc
@@ -79,7 +79,7 @@ The logger instance may be used as well:
 [source,java]
 ----
 from("direct:start")
-    .log(LoggingLeven.DEBUG, org.slf4j.LoggerFactory.getLogger("com.mycompany.mylogger"), "Processing ${id}")
+    .log(LoggingLevel.DEBUG, org.slf4j.LoggerFactory.getLogger("com.mycompany.mylogger"), "Processing ${id}")
     .to("bean:foo");
 ----