Skip to content

Commit a5d7fde

Browse files
committed
remove debugging logs
Signed-off-by: Xun Zhang <xunzh@amazon.com>
1 parent 3afa04c commit a5d7fde

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

ml-algorithms/src/main/java/org/opensearch/ml/engine/ingest/AbstractIngestion.java

-2
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,7 @@ protected void batchIngest(
161161
Map<String, Object> filteredMapping = isSoleSource
162162
? mlBatchIngestionInput.getFieldMapping()
163163
: filterFieldMapping(mlBatchIngestionInput, sourceIndex);
164-
System.out.println("filteredMapping is " + filteredMapping);
165164
Map<String, Object> jsonMap = processFieldMapping(jsonStr, filteredMapping);
166-
System.out.println("processFieldMapping is " + jsonMap);
167165
if (jsonMap.isEmpty()) {
168166
return;
169167
}

plugin/src/test/java/org/opensearch/ml/rest/RestMLInferenceSearchResponseProcessorIT.java

-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,6 @@ public void testMLInferenceProcessorRemoteModelCustomPrompt() throws Exception {
244244
createSearchPipelineProcessor(createPipelineRequestBody, pipelineName);
245245

246246
Map response = searchWithPipeline(client(), index_name, pipelineName, query);
247-
System.out.println(response);
248247
Assert.assertNotNull(JsonPath.parse(response).read("$.hits.hits[0]._source.llm_response"));
249248
Assert.assertNotNull(JsonPath.parse(response).read("$.hits.hits[1]._source.llm_response"));
250249
}

0 commit comments

Comments
 (0)