Author: markus
Date: Mon Jul 11 11:57:47 2011
New Revision: 1145130
URL: http://svn.apache.org/viewvc?rev=1145130&view=rev
Log:
NUTCH-1027 Degrade log level of 'can't find rules for scope'
Modified:
nutch/branches/branch-1.4/CHANGES.txt
nutch/branches/branch-1.4/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java
Modified: nutch/branches/branch-1.4/CHANGES.txt
URL:
http://svn.apache.org/viewvc/nutch/branches/branch-1.4/CHANGES.txt?rev=1145130&r1=1145129&r2=1145130&view=diff
==============================================================================
--- nutch/branches/branch-1.4/CHANGES.txt (original)
+++ nutch/branches/branch-1.4/CHANGES.txt Mon Jul 11 11:57:47 2011
@@ -2,6 +2,8 @@ Nutch Change Log
Release 1.4 - Current development
+* NUTCH-1027 Degrade log level of `can't find rules for scope` (markus)
+
* NUTCH-783 IndexingFiltersChecker utility (jnioche via markus)
* NUTCH-1030 WebgraphDB program requires manually added directories (markus)
Modified:
nutch/branches/branch-1.4/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java
URL:
http://svn.apache.org/viewvc/nutch/branches/branch-1.4/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java?rev=1145130&r1=1145129&r2=1145130&view=diff
==============================================================================
---
nutch/branches/branch-1.4/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java
(original)
+++
nutch/branches/branch-1.4/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java
Mon Jul 11 11:57:47 2011
@@ -164,7 +164,7 @@ public class RegexURLNormalizer extends
}
}
if (curRules == EMPTY_RULES || curRules == null) {
- LOG.warn("can't find rules for scope '" + scope + "', using default");
+ LOG.info("can't find rules for scope '" + scope + "', using default");
scopedRules.put(scope, EMPTY_RULES);
}
}