Removed logger prefixes when using @TestLogging annotation
This commit is contained in:
parent
1d8457394d
commit
daedf853a0
|
@ -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");
|
||||||
|
|
|
@ -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 ...");
|
||||||
|
|
Loading…
Reference in New Issue