Removed logger prefixes when using @TestLogging annotation

This commit is contained in:
Luca Cavanna 2013-09-11 11:19:38 +02:00
parent 1d8457394d
commit daedf853a0
2 changed files with 2 additions and 2 deletions

View File

@ -252,7 +252,7 @@ public class OpenCloseIndexTests extends AbstractSharedClusterTest {
assertIndexIsOpened("test1"); assertIndexIsOpened("test1");
} }
@Test @TestLogging("org.elasticsearch.cluster.metadata:TRACE") @Test @TestLogging("cluster.metadata:TRACE")
public void testCloseOpenAliasMultipleIndices() { public void testCloseOpenAliasMultipleIndices() {
Client client = client(); Client client = client();
createIndex("test1", "test2"); createIndex("test1", "test2");

View File

@ -50,7 +50,7 @@ public class RecoveryWhileUnderLoadTests extends AbstractSharedClusterTest {
private final ESLogger logger = Loggers.getLogger(RecoveryWhileUnderLoadTests.class); private final ESLogger logger = Loggers.getLogger(RecoveryWhileUnderLoadTests.class);
@Test @TestLogging("org.elasticsearch.action.search.type:TRACE,org.elasticsearch.action.admin.indices.refresh:TRACE") @Test @TestLogging("action.search.type:TRACE,action.admin.indices.refresh:TRACE")
@Slow @Slow
public void recoverWhileUnderLoadAllocateBackupsTest() throws Exception { public void recoverWhileUnderLoadAllocateBackupsTest() throws Exception {
logger.info("--> creating test index ..."); logger.info("--> creating test index ...");