HBASE-8879 Client Scanner spams the logs if there are lots of scanners.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1500870 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f47e212e1a
commit
0b0cccb61d
|
@ -93,8 +93,8 @@ public class ClientScanner extends AbstractClientScanner {
|
||||||
*/
|
*/
|
||||||
public ClientScanner(final Configuration conf, final Scan scan,
|
public ClientScanner(final Configuration conf, final Scan scan,
|
||||||
final byte[] tableName, HConnection connection) throws IOException {
|
final byte[] tableName, HConnection connection) throws IOException {
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isTraceEnabled()) {
|
||||||
LOG.debug("Scan table=" + Bytes.toString(tableName)
|
LOG.trace("Scan table=" + Bytes.toString(tableName)
|
||||||
+ ", startRow=" + Bytes.toStringBinary(scan.getStartRow()));
|
+ ", startRow=" + Bytes.toStringBinary(scan.getStartRow()));
|
||||||
}
|
}
|
||||||
this.scan = scan;
|
this.scan = scan;
|
||||||
|
|
Loading…
Reference in New Issue