You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/06/25 13:00:45 UTC

[camel] 02/02: (chores) camel-itest-cdi: improve differentiation of unrelated logging variabless

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

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit ef07055e0428ef4931ffe4da5ff3403f795789cf
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Sat Jun 25 13:24:44 2022 +0200

    (chores) camel-itest-cdi: improve differentiation of unrelated logging variabless
---
 .../src/main/java/org/apache/camel/itest/cdi/MyRoutes.java            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/camel-itest-cdi/src/main/java/org/apache/camel/itest/cdi/MyRoutes.java b/tests/camel-itest-cdi/src/main/java/org/apache/camel/itest/cdi/MyRoutes.java
index 47a34d17888..2d3207cb2d5 100644
--- a/tests/camel-itest-cdi/src/main/java/org/apache/camel/itest/cdi/MyRoutes.java
+++ b/tests/camel-itest-cdi/src/main/java/org/apache/camel/itest/cdi/MyRoutes.java
@@ -31,7 +31,7 @@ import org.slf4j.LoggerFactory;
 @ApplicationScoped
 public class MyRoutes extends RouteBuilder {
 
-    private static final Logger LOG = LoggerFactory.getLogger(MyRoutes.class);
+    private static final Logger LOGGER = LoggerFactory.getLogger(MyRoutes.class);
 
     @Inject
     @Uri(value = "seda:a")
@@ -46,7 +46,7 @@ public class MyRoutes extends RouteBuilder {
 
     @Override
     public void configure() {
-        LOG.info("Adding route from {} to {}", a, b);
+        LOGGER.info("Adding route from {} to {}", a, b);
         from(a).to(b);
     }