diff --git src/java/org/apache/nutch/crawl/WebTableReader.java src/java/org/apache/nutch/crawl/WebTableReader.java
index 167f122..e1ddd5a 100644
--- src/java/org/apache/nutch/crawl/WebTableReader.java
+++ src/java/org/apache/nutch/crawl/WebTableReader.java
@@ -215,9 +215,15 @@ public class WebTableReader extends NutchTool implements Tool {
     if (LOG.isInfoEnabled()) {
       LOG.info("WebTable statistics start");
     }
+    
     run(ToolUtil.toArgMap(Nutch.ARG_SORT, sort));
-    for (Entry<String,Object> e : results.entrySet()) {
-      LOG.info(e.getKey() + ":\t" + e.getValue());
+    
+    if (LOG.isInfoEnabled()) {
+      LOG.info("Statistics for WebTable: ");
+      for (Entry<String,Object> e : results.entrySet()) {
+        LOG.info(e.getKey() + ":\t" + e.getValue());
+      }
+      LOG.info("WebTable statistics: done");
     }
   }
 
@@ -607,13 +613,7 @@ public class WebTableReader extends NutchTool implements Tool {
     }
     // removing the tmp folder
     fileSystem.delete(tmpFolder, true);
-    if (LOG.isInfoEnabled()) {
-      LOG.info("Statistics for WebTable: ");
-      for (Entry<String,Object> e : results.entrySet()) {
-        LOG.info(e.getKey() + ":\t" + e.getValue());
-      }
-      LOG.info("WebTable statistics: done");
-    }
+    
     return results;
   }
 }
