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

svn commit: r1533178 - in /hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase: master/HMaster.java regionserver/HRegion.java

Author: larsh
Date: Thu Oct 17 17:55:02 2013
New Revision: 1533178

URL: http://svn.apache.org/r1533178
Log:
HBASE-9789 Change logging for Coprocessor exec call to trace

Modified:
    hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
    hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java

Modified: hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/master/HMaster.java?rev=1533178&r1=1533177&r2=1533178&view=diff
==============================================================================
--- hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/master/HMaster.java (original)
+++ hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/master/HMaster.java Thu Oct 17 17:55:02 2013
@@ -1999,8 +1999,8 @@ Server {
     Class<? extends CoprocessorProtocol> 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);

Modified: hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java?rev=1533178&r1=1533177&r2=1533178&view=diff
==============================================================================
--- hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java (original)
+++ hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java Thu Oct 17 17:55:02 2013
@@ -5604,8 +5604,8 @@ public class HRegion implements HeapSize
     Class<? extends CoprocessorProtocol> 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);