HBASE-10906 Change error log for NamingException in TableInputFormatBase to WARN level

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1584890 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2014-04-04 20:28:03 +00:00
parent b04e6a3cbd
commit 25c95d8dd9
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ extends InputFormat<ImmutableBytesWritable, Result> {
try {
regionLocation = reverseDNS(regionAddress);
} catch (NamingException e) {
LOG.error("Cannot resolve the host name for " + regionAddress + " because of " + e);
LOG.warn("Cannot resolve the host name for " + regionAddress + " because of " + e);
regionLocation = location.getHostname();
}