Skip to content

Commit

Permalink
Merge pull request crate#1014 from crate/l/tests-reduce-logging
Browse files Browse the repository at this point in the history
tests: reduce logging
  • Loading branch information
lukasender committed Aug 4, 2014
2 parents 8e92b37 + f7c62bd commit 1f8975a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import com.carrotsearch.hppc.cursors.ObjectCursor;
import io.crate.action.sql.SQLRequestBuilder;
import io.crate.action.sql.SQLResponse;
import io.crate.action.sql.TransportSQLAction;
import io.crate.action.sql.parser.SQLXContentSourceContext;
import io.crate.action.sql.parser.SQLXContentSourceParser;
import io.crate.test.integration.CrateIntegrationTest;
Expand All @@ -37,7 +36,6 @@
import org.elasticsearch.cluster.metadata.MappingMetaData;
import org.elasticsearch.cluster.metadata.MetaData;
import org.elasticsearch.common.bytes.BytesArray;
import org.elasticsearch.common.logging.Loggers;
import org.elasticsearch.common.settings.ImmutableSettings;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.xcontent.ToXContent;
Expand All @@ -52,7 +50,6 @@ public class SQLTransportIntegrationTest extends CrateIntegrationTest {

static {
ClassLoader.getSystemClassLoader().setDefaultAssertionStatus(true);
Loggers.getLogger(TransportSQLAction.class).setLevel("TRACE");
}

protected SQLTransportExecutor sqlExecutor = new SQLTransportExecutor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@
import io.crate.Constants;
import io.crate.action.sql.SQLActionException;
import io.crate.action.sql.SQLResponse;
import io.crate.action.sql.TransportSQLAction;
import io.crate.metadata.settings.CrateSettings;
import io.crate.test.integration.ClassLifecycleIntegrationTest;
import io.crate.testing.SQLTransportExecutor;
import io.crate.testing.TestingHelpers;
import org.elasticsearch.common.logging.Loggers;
import org.hamcrest.Matchers;
import org.junit.Before;
import org.junit.Rule;
Expand All @@ -54,7 +52,6 @@ public class TransportSQLActionClassLifecycleTest extends ClassLifecycleIntegrat

static {
ClassLoader.getSystemClassLoader().setDefaultAssertionStatus(true);
Loggers.getLogger(TransportSQLAction.class).setLevel("TRACE");
}

@Rule
Expand Down

0 comments on commit 1f8975a

Please sign in to comment.