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/10/20 15:22:46 UTC

[camel] branch main updated: camel-jbang - Tone down logging noise

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 7ea810010eb camel-jbang - Tone down logging noise
7ea810010eb is described below

commit 7ea810010ebf2fa727229ac8e5fc06f05c21ab13
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Oct 20 17:19:55 2022 +0200

    camel-jbang - Tone down logging noise
---
 .../org/apache/camel/impl/engine/DefaultRuntimeEndpointRegistry.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/DefaultRuntimeEndpointRegistry.java b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/DefaultRuntimeEndpointRegistry.java
index 0bd2892d46b..2483b6bd034 100644
--- a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/DefaultRuntimeEndpointRegistry.java
+++ b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/DefaultRuntimeEndpointRegistry.java
@@ -205,11 +205,11 @@ public class DefaultRuntimeEndpointRegistry extends EventNotifierSupport impleme
             outputUtilization = new DefaultEndpointUtilizationStatistics(limit);
         }
         if (extended) {
-            LOG.info(
+            LOG.debug(
                     "Runtime endpoint registry is in extended mode gathering usage statistics of all incoming and outgoing endpoints (cache limit: {})",
                     limit);
         } else {
-            LOG.info(
+            LOG.debug(
                     "Runtime endpoint registry is in normal mode gathering information of all incoming and outgoing endpoints (cache limit: {})",
                     limit);
         }