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:28:40 UTC

[camel] branch camel-3.19.x updated: Fix spelling mistake (#8942)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.19.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.19.x by this push:
     new 03b7893d131 Fix spelling mistake (#8942)
03b7893d131 is described below

commit 03b7893d131b15b221047b04488b210db3c41dd9
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");
 ----