[TEST] Turn on more logging for testDataPathCanBeChanged

This commit is contained in:
Lee Hinman 2015-04-02 20:11:33 -06:00
parent 2fc2c8284a
commit 8f13c5ad4d
1 changed files with 6 additions and 1 deletions

View File

@ -25,11 +25,15 @@ import org.elasticsearch.action.support.IndicesOptions;
import org.elasticsearch.cluster.metadata.IndexMetaData;
import org.elasticsearch.common.settings.ImmutableSettings;
import org.elasticsearch.test.ElasticsearchIntegrationTest;
import org.elasticsearch.test.junit.annotations.TestLogging;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.nio.file.*;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import static org.elasticsearch.index.query.QueryBuilders.matchAllQuery;
import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertAcked;
@ -53,6 +57,7 @@ public class IndicesCustomDataPathTests extends ElasticsearchIntegrationTest {
}
@Test
@TestLogging("_root:DEBUG,index:TRACE")
public void testDataPathCanBeChanged() throws Exception {
final String INDEX = "idx";
Path root = newTempDirPath();