You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ec...@apache.org on 2013/07/08 20:25:40 UTC

svn commit: r1500871 - /hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientScanner.java

Author: eclark
Date: Mon Jul  8 18:25:40 2013
New Revision: 1500871

URL: http://svn.apache.org/r1500871
Log:
HBASE-8879 Client Scanner spams the logs if there are lots of scanners.

Modified:
    hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientScanner.java

Modified: hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientScanner.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientScanner.java?rev=1500871&r1=1500870&r2=1500871&view=diff
==============================================================================
--- hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientScanner.java (original)
+++ hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientScanner.java Mon Jul  8 18:25:40 2013
@@ -93,8 +93,8 @@ public class ClientScanner extends Abstr
      */
     public ClientScanner(final Configuration conf, final Scan scan,
       final byte[] tableName, HConnection connection) throws IOException {
-      if (LOG.isDebugEnabled()) {
-        LOG.debug("Scan table=" + Bytes.toString(tableName)
+      if (LOG.isTraceEnabled()) {
+        LOG.trace("Scan table=" + Bytes.toString(tableName)
             + ", startRow=" + Bytes.toStringBinary(scan.getStartRow()));
       }
       this.scan = scan;