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

jeremyross 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 8f441dc  Bindy: Lower log severity for unmapped fields
8f441dc is described below

commit 8f441dc6928aa46a2718534cce455d4a6936769d
Author: Jeremy Ross <jeremy.g.r...@gmail.com>
AuthorDate: Fri Oct 22 14:08:42 2021 -0500

    Bindy: Lower log severity for unmapped fields
    
    Considering the user must explicitly allow skipped fields with the skipField
    option, this should not log at info. Changing to debug.
---
 .../main/java/org/apache/camel/dataformat/bindy/BindyCsvFactory.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyCsvFactory.java
 
b/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyCsvFactory.java
index 0c050d8..2403b7e 100644
--- 
a/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyCsvFactory.java
+++ 
b/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyCsvFactory.java
@@ -160,7 +160,7 @@ public class BindyCsvFactory extends BindyAbstractFactory 
implements BindyFactor
         }
 
         if (annotatedFields.size() < maxpos) {
-            LOG.info("Potentially incomplete model: some csv fields may not be 
mapped to @DataField members");
+            LOG.debug("Potentially incomplete model: some csv fields may not 
be mapped to @DataField members");
         }
     }
 

Reply via email to