You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by cm...@apache.org on 2009/08/12 09:26:02 UTC

svn commit: r803393 - /camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyCsvFactory.java

Author: cmoulliard
Date: Wed Aug 12 07:26:02 2009
New Revision: 803393

URL: http://svn.apache.org/viewvc?rev=803393&view=rev
Log:
Add more debug tracing

Modified:
    camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyCsvFactory.java

Modified: camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyCsvFactory.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyCsvFactory.java?rev=803393&r1=803392&r2=803393&view=diff
==============================================================================
--- camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyCsvFactory.java (original)
+++ camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyCsvFactory.java Wed Aug 12 07:26:02 2009
@@ -296,6 +296,11 @@
                         strValue = format.format(value);
                         
                     }
+                    
+                    if (LOG.isDebugEnabled()) {
+                        LOG.debug("Data : " + value + ", value : " + strValue);
+                    }
+                    
                     builder.append(strValue);
 
                     if (it.hasNext()) {