You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/09/16 06:15:47 UTC

[camel] branch master updated (c8216c5 -> 85550de)

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

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


    from c8216c5  Sync Properties and full regen
     new 196648e  Camel-package-maven-plugin: logging at debug level
     new 85550de  Camel-package-maven-plugin: Logging at debug level

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:
 .../main/java/org/apache/camel/maven/packaging/ComponentDslMojo.java    | 2 +-
 .../src/main/java/org/apache/camel/maven/packaging/EndpointDslMojo.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[camel] 02/02: Camel-package-maven-plugin: Logging at debug level

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 85550de57626ab031021bd17c851e85fb834287b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Sep 16 08:14:14 2020 +0200

    Camel-package-maven-plugin: Logging at debug level
---
 .../src/main/java/org/apache/camel/maven/packaging/EndpointDslMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/EndpointDslMojo.java b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/EndpointDslMojo.java
index 40f6855..8ea9846 100644
--- a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/EndpointDslMojo.java
+++ b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/EndpointDslMojo.java
@@ -168,7 +168,7 @@ public class EndpointDslMojo extends AbstractGeneratorMojo {
     public void execute() throws MojoExecutionException, MojoFailureException {
         File camelDir = findCamelDirectory(baseDir, "core/camel-endpointdsl");
         if (camelDir == null) {
-            getLog().info("No core/camel-endpointdsl folder found, skipping execution");
+            getLog().debug("No core/camel-endpointdsl folder found, skipping execution");
             return;
         }
         Path root = camelDir.toPath();


[camel] 01/02: Camel-package-maven-plugin: logging at debug level

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 196648e608a8a3930d432220fb7473d8aeacaaea
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Sep 16 08:13:51 2020 +0200

    Camel-package-maven-plugin: logging at debug level
---
 .../main/java/org/apache/camel/maven/packaging/ComponentDslMojo.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/ComponentDslMojo.java b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/ComponentDslMojo.java
index 270840d..b3a1ae1 100644
--- a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/ComponentDslMojo.java
+++ b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/ComponentDslMojo.java
@@ -120,7 +120,7 @@ public class ComponentDslMojo extends AbstractGeneratorMojo {
 
         File camelDir = findCamelDirectory(baseDir, "core/camel-componentdsl");
         if (camelDir == null) {
-            getLog().info("No core/camel-componentdsl folder found, skipping execution");
+            getLog().debug("No core/camel-componentdsl folder found, skipping execution");
             return;
         }
         Path root = camelDir.toPath();