Author: janstey
Date: Thu Sep  9 16:46:41 2010
New Revision: 995488

URL: http://svn.apache.org/viewvc?rev=995488&view=rev
Log:
noticed a few typos in the logs

Modified:
    
camel/trunk/camel-core/src/main/java/org/apache/camel/component/file/GenericFileConsumer.java

Modified: 
camel/trunk/camel-core/src/main/java/org/apache/camel/component/file/GenericFileConsumer.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/component/file/GenericFileConsumer.java?rev=995488&r1=995487&r2=995488&view=diff
==============================================================================
--- 
camel/trunk/camel-core/src/main/java/org/apache/camel/component/file/GenericFileConsumer.java
 (original)
+++ 
camel/trunk/camel-core/src/main/java/org/apache/camel/component/file/GenericFileConsumer.java
 Thu Sep  9 16:46:41 2010
@@ -69,7 +69,7 @@ public abstract class GenericFileConsume
         // such as are we connected to the FTP Server still?
         if (!prePollCheck()) {
             if (log.isDebugEnabled()) {
-                log.debug("Skipping pool as pre poll check returned false");
+                log.debug("Skipping poll as pre poll check returned false");
             }
             return;
         }
@@ -83,7 +83,7 @@ public abstract class GenericFileConsume
         boolean limitHit = !pollDirectory(name, files);
         long delta = stop.stop();
         if (log.isDebugEnabled()) {
-            log.debug("Took " + TimeUtils.printDuration(delta) + " to pool: " 
+ name);
+            log.debug("Took " + TimeUtils.printDuration(delta) + " to poll: " 
+ name);
         }
 
         // log if we hit the limit


Reply via email to