HBASE-3795 Remove the "Cache hit for row" message
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1094745 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
24444f3c85
commit
9dbed1e938
|
@ -232,6 +232,7 @@ Release 0.90.3 - Unreleased
|
|||
HBASE-3747 ReplicationSource should differanciate remote and local exceptions
|
||||
HBASE-3652 Speed up tests by lowering some sleeps
|
||||
HBASE-3767 Improve how HTable handles threads used for multi actions
|
||||
HBASE-3795 Remove the "Cache hit for row" message
|
||||
|
||||
TASKS
|
||||
HBASE-3748 Add rolling of thrift/rest daemons to graceful_stop.sh script
|
||||
|
|
|
@ -822,14 +822,6 @@ public class HConnectionManager {
|
|||
|
||||
HRegionLocation rl = tableLocations.get(row);
|
||||
if (rl != null) {
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Cache hit for row <" +
|
||||
Bytes.toStringBinary(row) +
|
||||
"> in tableName " + Bytes.toString(tableName) +
|
||||
": location server " + rl.getServerAddress() +
|
||||
", location region name " +
|
||||
rl.getRegionInfo().getRegionNameAsString());
|
||||
}
|
||||
return rl;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue