Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
Signed-off-by: zane-neo <zaniu@amazon.com>
  • Loading branch information
zane-neo committed Jun 6, 2024
1 parent d3949b6 commit 59fcffb
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit 59fcffb

Please sign in to comment.