Author: markus
Date: Mon Jul 11 11:58:00 2011
New Revision: 1145131

URL: http://svn.apache.org/viewvc?rev=1145131&view=rev
Log:
NUTCH-1027 Degrade log level of 'can't find rules for scope'

Modified:
    nutch/trunk/CHANGES.txt
    
nutch/trunk/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java

Modified: nutch/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/nutch/trunk/CHANGES.txt?rev=1145131&r1=1145130&r2=1145131&view=diff
==============================================================================
--- nutch/trunk/CHANGES.txt (original)
+++ nutch/trunk/CHANGES.txt Mon Jul 11 11:58:00 2011
@@ -2,6 +2,8 @@ Nutch Change Log
 
 Release 2.0 - Current Development
 
+* NUTCH-1027 Degrade log level of `can't find rules for scope` (markus)
+
 * NUTCH-1011 Normalize duplicate slashes in URL's (markus)
 
 * NUTCH-1013 Migrate RegexURLNormalizer from Apache ORO to java.util.regex 
(markus)

Modified: 
nutch/trunk/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java
URL: 
http://svn.apache.org/viewvc/nutch/trunk/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java?rev=1145131&r1=1145130&r2=1145131&view=diff
==============================================================================
--- 
nutch/trunk/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java
 (original)
+++ 
nutch/trunk/src/plugin/urlnormalizer-regex/src/java/org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.java
 Mon Jul 11 11:58:00 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);
       }
     }


Reply via email to