From 793a6138a33e6355e19cc153fe29af9ff305e570 Mon Sep 17 00:00:00 2001 From: Chris Earle Date: Tue, 29 Mar 2016 17:59:48 -0400 Subject: [PATCH] Adding logger to catch test failure. See elastic/elasticsearch#1769 Original commit: elastic/x-pack-elasticsearch@ab47c057399ecf68bb0d34aff5b6ed273ab33d0e --- .../smoketest/SmokeTestMonitoringWithShieldIT.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/elasticsearch/qa/smoke-test-plugins-ssl/src/test/java/org/elasticsearch/smoketest/SmokeTestMonitoringWithShieldIT.java b/elasticsearch/qa/smoke-test-plugins-ssl/src/test/java/org/elasticsearch/smoketest/SmokeTestMonitoringWithShieldIT.java index 09a6feb8ad9..a64fb1f6667 100644 --- a/elasticsearch/qa/smoke-test-plugins-ssl/src/test/java/org/elasticsearch/smoketest/SmokeTestMonitoringWithShieldIT.java +++ b/elasticsearch/qa/smoke-test-plugins-ssl/src/test/java/org/elasticsearch/smoketest/SmokeTestMonitoringWithShieldIT.java @@ -14,6 +14,7 @@ import org.elasticsearch.common.transport.InetSocketTransportAddress; import org.elasticsearch.plugins.Plugin; import org.elasticsearch.shield.transport.netty.ShieldNettyTransport; import org.elasticsearch.test.ESIntegTestCase; +import org.elasticsearch.test.junit.annotations.TestLogging; import org.elasticsearch.xpack.XPackPlugin; import org.junit.After; import org.junit.AfterClass; @@ -41,6 +42,7 @@ import static org.hamcrest.Matchers.greaterThan; * then uses a transport client to check that the data have been correctly received and * indexed in the cluster. */ +@TestLogging("org.elasticsearch.action.admin.cluster.settings:DEBUG") public class SmokeTestMonitoringWithShieldIT extends ESIntegTestCase { private static final String USER = "test_user";