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");
|
||||
}
|
||||
|
||||
@Test @TestLogging("org.elasticsearch.cluster.metadata:TRACE")
|
||||
@Test @TestLogging("cluster.metadata:TRACE")
|
||||
public void testCloseOpenAliasMultipleIndices() {
|
||||
Client client = client();
|
||||
createIndex("test1", "test2");
|
||||
|
|
|
@ -50,7 +50,7 @@ public class RecoveryWhileUnderLoadTests extends AbstractSharedClusterTest {
|
|||
|
||||
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
|
||||
public void recoverWhileUnderLoadAllocateBackupsTest() throws Exception {
|
||||
logger.info("--> creating test index ...");
|
||||
|
|
Loading…
Reference in New Issue