HBASE-3847 Turn off DEBUG logging of RPCs in WriteableRPCEngine on TRUNK

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1098861 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-05-02 23:37:54 +00:00
parent df267ce6e9
commit 7e6f56200e
3 changed files with 7 additions and 2 deletions

View File

@ -95,6 +95,7 @@ Release 0.91.0 - Unreleased
HBASE-3843 splitLogWorker starts too early (Prakash Khemani)
HBASE-3838 RegionCoprocesorHost.preWALRestore throws npe in case there is
no RegionObserver registered (Himanshu Vashishtha)
HBASE-3847 Turn off DEBUG logging of RPCs in WriteableRPCEngine on TRUNK
IMPROVEMENTS
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)

View File

@ -37,7 +37,9 @@ import java.lang.reflect.Method;
* {@link org.apache.hadoop.hbase.client.ServerCallable} instance).
*/
public class ExecRPCInvoker implements InvocationHandler {
private static final Log LOG = LogFactory.getLog(ExecRPCInvoker.class);
// LOG is NOT in hbase subpackage intentionally so that the default HBase
// DEBUG log level does NOT emit RPC-level logging.
private static final Log LOG = LogFactory.getLog("org.apache.hadoop.ipc.ExecRPCInvoker");
private Configuration conf;
private final HConnection connection;

View File

@ -44,7 +44,9 @@ import org.apache.hadoop.conf.*;
/** An RpcEngine implementation for Writable data. */
class WritableRpcEngine implements RpcEngine {
private static final Log LOG = LogFactory.getLog(HBaseRPC.class);
// LOG is NOT in hbase subpackage intentionally so that the default HBase
// DEBUG log level does NOT emit RPC-level logging.
private static final Log LOG = LogFactory.getLog("org.apache.hadoop.ipc.RPCEngine");
/* Cache a client using its socket factory as the hash key */
static private class ClientCache {