HBASE-9225 Enable TRACE logging in TestReplicationBase
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1514107 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
92190aa973
commit
8c4a9c79d8
|
@ -20,6 +20,7 @@ package org.apache.hadoop.hbase.replication;
|
|||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.commons.logging.impl.Log4JLogger;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.hbase.HBaseConfiguration;
|
||||
import org.apache.hadoop.hbase.HBaseTestingUtility;
|
||||
|
@ -30,9 +31,11 @@ import org.apache.hadoop.hbase.TableName;
|
|||
import org.apache.hadoop.hbase.client.HBaseAdmin;
|
||||
import org.apache.hadoop.hbase.client.HTable;
|
||||
import org.apache.hadoop.hbase.client.replication.ReplicationAdmin;
|
||||
import org.apache.hadoop.hbase.replication.regionserver.ReplicationSource;
|
||||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
import org.apache.hadoop.hbase.zookeeper.MiniZooKeeperCluster;
|
||||
import org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher;
|
||||
import org.apache.log4j.Level;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
|
||||
|
@ -44,6 +47,10 @@ import org.junit.BeforeClass;
|
|||
*/
|
||||
public class TestReplicationBase {
|
||||
|
||||
{
|
||||
((Log4JLogger) ReplicationSource.LOG).getLogger().setLevel(Level.ALL);
|
||||
}
|
||||
|
||||
private static final Log LOG = LogFactory.getLog(TestReplicationBase.class);
|
||||
|
||||
protected static Configuration conf1 = HBaseConfiguration.create();
|
||||
|
|
|
@ -21,16 +21,12 @@ package org.apache.hadoop.hbase.replication;
|
|||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.commons.logging.impl.Log4JLogger;
|
||||
import org.apache.hadoop.hbase.HBaseTestingUtility;
|
||||
import org.apache.hadoop.hbase.LargeTests;
|
||||
import org.apache.hadoop.hbase.UnknownScannerException;
|
||||
import org.apache.hadoop.hbase.client.Result;
|
||||
import org.apache.hadoop.hbase.client.ResultScanner;
|
||||
import org.apache.hadoop.hbase.client.Scan;
|
||||
import org.apache.hadoop.hbase.replication.regionserver.ReplicationSource;
|
||||
import org.apache.log4j.Level;
|
||||
import org.junit.Test;
|
||||
import org.junit.experimental.categories.Category;
|
||||
|
||||
import static org.junit.Assert.fail;
|
||||
|
@ -38,10 +34,6 @@ import static org.junit.Assert.fail;
|
|||
@Category(LargeTests.class)
|
||||
public class TestReplicationKillRS extends TestReplicationBase {
|
||||
|
||||
{
|
||||
((Log4JLogger) ReplicationSource.LOG).getLogger().setLevel(Level.ALL);
|
||||
}
|
||||
|
||||
private static final Log LOG = LogFactory.getLog(TestReplicationKillRS.class);
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue