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 2020/09/29 12:30:42 UTC

[camel] branch master updated: Tone down logging

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 988fc24  Tone down logging
988fc24 is described below

commit 988fc24a5159cbb51cd3e077324132e48fe1b05b
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Sep 29 14:30:01 2020 +0200

    Tone down logging
---
 .../java/org/apache/camel/core/xml/AbstractCamelContextFactoryBean.java | 2 +-
 .../main/java/org/apache/camel/main/DefaultConfigurationConfigurer.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/camel-core-xml/src/main/java/org/apache/camel/core/xml/AbstractCamelContextFactoryBean.java b/core/camel-core-xml/src/main/java/org/apache/camel/core/xml/AbstractCamelContextFactoryBean.java
index 2607d09..d1aa9fe 100644
--- a/core/camel-core-xml/src/main/java/org/apache/camel/core/xml/AbstractCamelContextFactoryBean.java
+++ b/core/camel-core-xml/src/main/java/org/apache/camel/core/xml/AbstractCamelContextFactoryBean.java
@@ -379,7 +379,7 @@ public abstract class AbstractCamelContextFactoryBean<T extends ModelCamelContex
         HealthCheckRegistry healthCheckRegistry = getBeanForType(HealthCheckRegistry.class);
         if (healthCheckRegistry != null) {
             healthCheckRegistry.setCamelContext(getContext());
-            LOG.info("Using HealthCheckRegistry: {}", healthCheckRegistry);
+            LOG.debug("Using HealthCheckRegistry: {}", healthCheckRegistry);
             getContext().setExtension(HealthCheckRegistry.class, healthCheckRegistry);
         } else {
             // okay attempt to inject this camel context into existing health check (if any)
diff --git a/core/camel-main/src/main/java/org/apache/camel/main/DefaultConfigurationConfigurer.java b/core/camel-main/src/main/java/org/apache/camel/main/DefaultConfigurationConfigurer.java
index 11f769b..9f36324 100644
--- a/core/camel-main/src/main/java/org/apache/camel/main/DefaultConfigurationConfigurer.java
+++ b/core/camel-main/src/main/java/org/apache/camel/main/DefaultConfigurationConfigurer.java
@@ -388,7 +388,7 @@ public final class DefaultConfigurationConfigurer {
         HealthCheckRegistry healthCheckRegistry = getSingleBeanOfType(registry, HealthCheckRegistry.class);
         if (healthCheckRegistry != null) {
             healthCheckRegistry.setCamelContext(camelContext);
-            LOG.info("Using HealthCheckRegistry: {}", healthCheckRegistry);
+            LOG.debug("Using HealthCheckRegistry: {}", healthCheckRegistry);
             camelContext.setExtension(HealthCheckRegistry.class, healthCheckRegistry);
         } else {
             // okay attempt to inject this camel context into existing health check (if any)