You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by mb...@apache.org on 2012/10/02 14:50:19 UTC

svn commit: r1392893 - /hbase/branches/0.89-fb/src/main/java/org/apache/hadoop/hbase/client/HConnectionManager.java

Author: mbautin
Date: Tue Oct  2 12:50:18 2012
New Revision: 1392893

URL: http://svn.apache.org/viewvc?rev=1392893&view=rev
Log:
[HBASE-6911] Set the log for the location cache hit in the hbase client as trace level

Author: liyintang

Summary: Set the log for the location cache hit in the hbase client as trace level.  (#1772020)

Test Plan: will test it on the dev cluster

Reviewers: kannan

Reviewed By: kannan

CC: hbase-eng@

Differential Revision: https://phabricator.fb.com/D587927

Modified:
    hbase/branches/0.89-fb/src/main/java/org/apache/hadoop/hbase/client/HConnectionManager.java

Modified: hbase/branches/0.89-fb/src/main/java/org/apache/hadoop/hbase/client/HConnectionManager.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.89-fb/src/main/java/org/apache/hadoop/hbase/client/HConnectionManager.java?rev=1392893&r1=1392892&r2=1392893&view=diff
==============================================================================
--- hbase/branches/0.89-fb/src/main/java/org/apache/hadoop/hbase/client/HConnectionManager.java (original)
+++ hbase/branches/0.89-fb/src/main/java/org/apache/hadoop/hbase/client/HConnectionManager.java Tue Oct  2 12:50:18 2012
@@ -1121,8 +1121,8 @@ public class HConnectionManager {
 
       HRegionLocation rl = tableLocations.get(row);
       if (rl != null) {
-        if (LOG.isDebugEnabled()) {
-          LOG.debug("Cache hit for row <" +
+        if (LOG.isTraceEnabled()) {
+          LOG.trace("Cache hit for row <" +
             Bytes.toStringBinary(row) +
             "> in tableName " + Bytes.toString(tableName) +
             ": location server " + rl.getServerAddress() +