[TEST] added additional logging to LoggingConfigurationTests

This is to try to determine why the test passes locally but not on the CI builds
This commit is contained in:
Colin Goodheart-Smithe 2014-10-29 13:34:25 +00:00
parent f8ea7c15d7
commit c639815af9
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,6 @@ package org.elasticsearch.common.logging;
import org.apache.log4j.Appender;
import org.apache.log4j.Logger;
import org.apache.lucene.util.LuceneTestCase.AwaitsFix;
import org.elasticsearch.common.logging.log4j.Log4jESLogger;
import org.elasticsearch.common.logging.log4j.Log4jESLoggerFactory;
import org.elasticsearch.common.logging.log4j.LogConfigurator;
@ -40,10 +39,11 @@ import static org.hamcrest.Matchers.notNullValue;
*/
public class LoggingConfigurationTests extends ElasticsearchTestCase {
@AwaitsFix(bugUrl = "relates to commit 4ebbb657")
// @AwaitsFix(bugUrl = "relates to commit 4ebbb657")
@Test
public void testMultipleConfigs() throws Exception {
File configDir = resolveConfigDir();
logger.info("Using config directory: {}", configDir.getAbsolutePath());
Settings settings = ImmutableSettings.builder()
.put("path.conf", configDir.getAbsolutePath())
.build();