Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E07B210870 for ; Thu, 17 Oct 2013 17:55:29 +0000 (UTC) Received: (qmail 99439 invoked by uid 500); 17 Oct 2013 17:55:28 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 99217 invoked by uid 500); 17 Oct 2013 17:55:27 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 98978 invoked by uid 99); 17 Oct 2013 17:55:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Oct 2013 17:55:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Oct 2013 17:55:24 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 08D2523888E4; Thu, 17 Oct 2013 17:55:03 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1533178 - in /hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase: master/HMaster.java regionserver/HRegion.java Date: Thu, 17 Oct 2013 17:55:02 -0000 To: commits@hbase.apache.org From: larsh@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131017175503.08D2523888E4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 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 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);