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:49 UTC

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

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();