From c09a995930163cc48b1f86b12ed6504cc9cfdc97 Mon Sep 17 00:00:00 2001 From: orbiter Date: Sat, 6 Mar 2010 20:31:30 +0000 Subject: [PATCH] better logging of double occurrences of urls in the crawler git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6718 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/crawler/CrawlStacker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/de/anomic/crawler/CrawlStacker.java b/source/de/anomic/crawler/CrawlStacker.java index 02d11f202..28919a54b 100644 --- a/source/de/anomic/crawler/CrawlStacker.java +++ b/source/de/anomic/crawler/CrawlStacker.java @@ -266,11 +266,11 @@ public final class CrawlStacker { // do double-check if ((dbocc != null) && (!recrawl)) { if (this.log.isFine()) this.log.logFine("URL '" + entry.url().toString() + "' is double registered in '" + dbocc + "'. " + "Stack processing time: " + (System.currentTimeMillis() - startTime) + "ms"); - return "double " + dbocc; + return "double in: " + dbocc; } if ((oldEntry != null) && (!recrawl)) { if (this.log.isFine()) this.log.logFine("URL '" + entry.url().toString() + "' is double registered in 'LURL'. " + "Stack processing time: " + (System.currentTimeMillis() - startTime) + "ms"); - return "double LURL"; + return "double in: LURL"; } // show potential re-crawl