diff --git a/plugin/src/test/java/org/opensearch/ml/rest/MLCommonsRestTestCase.java b/plugin/src/test/java/org/opensearch/ml/rest/MLCommonsRestTestCase.java index 186aab381b..60801cc28a 100644 --- a/plugin/src/test/java/org/opensearch/ml/rest/MLCommonsRestTestCase.java +++ b/plugin/src/test/java/org/opensearch/ml/rest/MLCommonsRestTestCase.java @@ -103,9 +103,6 @@ import com.google.gson.Gson; import com.google.gson.JsonArray; -import lombok.extern.log4j.Log4j2; - -@Log4j2 public abstract class MLCommonsRestTestCase extends OpenSearchRestTestCase { protected Gson gson = new Gson(); public static long CUSTOM_MODEL_TIMEOUT = 20_000; // 20 seconds @@ -859,7 +856,6 @@ public static Map parseResponseToMap(Response response) throws IOException { HttpEntity entity = response.getEntity(); assertNotNull(response); String entityString = TestHelper.httpEntityToString(entity); - log.info("response: {}", entityString); return StringUtils.gson.fromJson(entityString, Map.class); }