Index: src/main/java/org/apache/hadoop/hbase/master/HMaster.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/master/HMaster.java (revision 1533172) +++ src/main/java/org/apache/hadoop/hbase/master/HMaster.java (working copy) @@ -1999,8 +1999,8 @@ Class protocol = call.getProtocol(); if (protocol == null) { String protocolName = call.getProtocolName(); - if (LOG.isDebugEnabled()) { - LOG.debug("Received dynamic protocol exec call with protocolName " + protocolName); + if (LOG.isTraceEnabled()) { + LOG.trace("Received dynamic protocol exec call with protocolName " + protocolName); } // detect the actual protocol class protocol = protocolHandlerNames.get(protocolName); Index: src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java (revision 1533172) +++ src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java (working copy) @@ -5604,8 +5604,8 @@ Class protocol = call.getProtocol(); if (protocol == null) { String protocolName = call.getProtocolName(); - if (LOG.isDebugEnabled()) { - LOG.debug("Received dynamic protocol exec call with protocolName " + protocolName); + if (LOG.isTraceEnabled()) { + LOG.trace("Received dynamic protocol exec call with protocolName " + protocolName); } // detect the actual protocol class protocol = protocolHandlerNames.get(protocolName);