HBASE-5582 "No HServerInfo found for" should be a WARNING message (Kevin Odell via JD)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1394768 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Daniel Cryans 2012-10-05 19:56:01 +00:00
parent aefd784268
commit e52314f054
1 changed files with 2 additions and 1 deletions

View File

@ -95,7 +95,8 @@ public class RegionServerTracker extends ZooKeeperListener {
serverName + "]");
ServerName sn = ServerName.parseServerName(serverName);
if (!serverManager.isServerOnline(sn)) {
LOG.info(serverName.toString() + " is not online");
LOG.warn(serverName.toString() + " is not online or isn't known to the master."+
"The latter could be caused by a DNS misconfiguration.");
return;
}
remove(sn);