--- src/java/org/apache/nutch/parse/ParseOutputFormat.java	Thu Jun 20 14:10:30 2013
+++ src/java/org/apache/nutch/parse/ParseOutputFormat.java	Thu Feb 13 16:21:51 2014
@@ -48,6 +48,7 @@
 /* Parse content in a segment. */
 public class ParseOutputFormat implements OutputFormat<Text, Parse> {
   private static final Logger LOG = LoggerFactory.getLogger(ParseOutputFormat.class);
+  private static final Logger LOG_EXTERNAL = LoggerFactory.getLogger(ParseOutputFormat.class.getName() + ".externalLinks");
 
   private URLFilters filters;
   private URLNormalizers normalizers;
@@ -303,6 +304,7 @@
         toHost = null;
       }
       if (toHost == null || !toHost.equals(fromHost)) { // external links
+        LOG_EXTERNAL.info(toUrl);
         return null; // skip it
       }
     }
