Repository: nutch
Updated Branches:
  refs/heads/master 6d2bfa986 -> 0e03daf11


Inconsistent log level


Project: http://git-wip-us.apache.org/repos/asf/nutch/repo
Commit: http://git-wip-us.apache.org/repos/asf/nutch/commit/0e03daf1
Tree: http://git-wip-us.apache.org/repos/asf/nutch/tree/0e03daf1
Diff: http://git-wip-us.apache.org/repos/asf/nutch/diff/0e03daf1

Branch: refs/heads/master
Commit: 0e03daf1139a1a8465d6e2a6b54490e2dfc2a9ef
Parents: 6d2bfa9
Author: Sebastian Nagel <[email protected]>
Authored: Fri Apr 29 18:33:04 2016 +0200
Committer: Sebastian Nagel <[email protected]>
Committed: Fri Apr 29 18:33:04 2016 +0200

----------------------------------------------------------------------
 CHANGES.txt                                          | 2 ++
 src/java/org/apache/nutch/fetcher/FetcherThread.java | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nutch/blob/0e03daf1/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 6173134..436db07 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -10,6 +10,8 @@ in the release announcement and keep it on top in this 
CHANGES.txt for the Nutch
 
 Nutch Change Log
 
+* NUTCH-2256 Inconsistent log level (songwanging via snagel)
+
 * NUTCH-2254 Indexer: character set issue with -addBinaryContent and -base64 
(Federico Bonelli, snagel)
 
 * NUTCH-2250 CommonCrawlDumper : Invalid format and skipped parts (Thamme 
Gowda N.,lewismc via mattmann)

http://git-wip-us.apache.org/repos/asf/nutch/blob/0e03daf1/src/java/org/apache/nutch/fetcher/FetcherThread.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/nutch/fetcher/FetcherThread.java 
b/src/java/org/apache/nutch/fetcher/FetcherThread.java
index 09315a7..e57e735 100644
--- a/src/java/org/apache/nutch/fetcher/FetcherThread.java
+++ b/src/java/org/apache/nutch/fetcher/FetcherThread.java
@@ -286,7 +286,7 @@ public class FetcherThread extends Thread {
                     .getFetchItemQueue(fit.queueID);
                 fiq.crawlDelay = rules.getCrawlDelay();
                 if (LOG.isDebugEnabled()) {
-                  LOG.info("Crawl delay for queue: " + fit.queueID
+                  LOG.debug("Crawl delay for queue: " + fit.queueID
                       + " is set to " + fiq.crawlDelay
                       + " as per robots.txt. url: " + fit.url);
                 }

Reply via email to