logging: this should not be warn anymore - changing to debug

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1455753 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2013-03-12 23:29:28 +00:00
parent 7cc57853d6
commit ba800da0e6
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ public class DistributedQueue {
try { try {
// Check format // Check format
if (!childName.regionMatches(0, prefix, 0, prefix.length())) { if (!childName.regionMatches(0, prefix, 0, prefix.length())) {
LOG.warn("Found child node with improper name: " + childName); LOG.debug("Found child node with improper name: " + childName);
continue; continue;
} }
String suffix = childName.substring(prefix.length()); String suffix = childName.substring(prefix.length());