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:
parent
b04e6a3cbd
commit
25c95d8dd9
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue