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/04/18 11:44:03 UTC

[camel] branch main updated (711d0387e87 -> f6986d46d98)

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

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


    from 711d0387e87 Polished
     new 0d7408f047a Tone down logging noise on startup
     new f6986d46d98 Turn off route debugger, as you can use --dep=camel:debug to enable it

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/camel/component/properties/PropertiesComponent.java    | 4 ++--
 .../main/java/org/apache/camel/management/JmxManagementStrategy.java  | 2 +-
 dsl/camel-kamelet-main/pom.xml                                        | 4 ----
 3 files changed, 3 insertions(+), 7 deletions(-)


[camel] 01/02: Tone down logging noise on startup

Posted by da...@apache.org.
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

commit 0d7408f047a7207f801baa0f62047c992178168f
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Apr 18 13:41:30 2022 +0200

    Tone down logging noise on startup
---
 .../org/apache/camel/component/properties/PropertiesComponent.java    | 4 ++--
 .../main/java/org/apache/camel/management/JmxManagementStrategy.java  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/camel-base/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java b/core/camel-base/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java
index 0dc27aa33a9..0c5c4707e77 100644
--- a/core/camel-base/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java
+++ b/core/camel-base/src/main/java/org/apache/camel/component/properties/PropertiesComponent.java
@@ -731,7 +731,7 @@ public class PropertiesComponent extends ServiceSupport
             try {
                 for (PropertiesSource source : getCamelContext().getRegistry().findByType(PropertiesSource.class)) {
                     addPropertiesSource(source);
-                    LOG.info("PropertiesComponent added custom PropertiesSource (registry): {}", source);
+                    LOG.debug("PropertiesComponent added custom PropertiesSource (registry): {}", source);
                 }
 
                 FactoryFinder factoryFinder = getCamelContext().adapt(ExtendedCamelContext.class)
@@ -742,7 +742,7 @@ public class PropertiesComponent extends ServiceSupport
                     if (obj instanceof PropertiesSource) {
                         PropertiesSource ps = (PropertiesSource) obj;
                         addPropertiesSource(ps);
-                        LOG.info("PropertiesComponent added custom PropertiesSource (factory): {}", ps);
+                        LOG.debug("PropertiesComponent added custom PropertiesSource (factory): {}", ps);
                     } else if (obj != null) {
                         LOG.warn(
                                 "PropertiesComponent cannot add custom PropertiesSource as the type is not a {} but: {}",
diff --git a/core/camel-management/src/main/java/org/apache/camel/management/JmxManagementStrategy.java b/core/camel-management/src/main/java/org/apache/camel/management/JmxManagementStrategy.java
index 83aead90208..0d8d82cd23c 100644
--- a/core/camel-management/src/main/java/org/apache/camel/management/JmxManagementStrategy.java
+++ b/core/camel-management/src/main/java/org/apache/camel/management/JmxManagementStrategy.java
@@ -121,7 +121,7 @@ public class JmxManagementStrategy extends DefaultManagementStrategy {
 
     @Override
     protected void doInit() throws Exception {
-        LOG.info("JMX is enabled");
+        LOG.debug("JMX is enabled");
         super.doInit();
     }
 


[camel] 02/02: Turn off route debugger, as you can use --dep=camel:debug to enable it

Posted by da...@apache.org.
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

commit f6986d46d98edf8c0e5b88d4f2b9e44ec00e5803
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Apr 18 13:43:45 2022 +0200

    Turn off route debugger, as you can use --dep=camel:debug to enable it
---
 dsl/camel-kamelet-main/pom.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/dsl/camel-kamelet-main/pom.xml b/dsl/camel-kamelet-main/pom.xml
index bc5818eb363..0b6d39b62ab 100644
--- a/dsl/camel-kamelet-main/pom.xml
+++ b/dsl/camel-kamelet-main/pom.xml
@@ -48,10 +48,6 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-health</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-debug</artifactId>
-        </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-console</artifactId>