Skip to content

Commit 7a37236

Browse files
committed
remove debugging print
Signed-off-by: b4sjoo <sicheng.song@outlook.com>
1 parent d751fa1 commit 7a37236

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

plugin/src/main/java/org/opensearch/ml/utils/MLNodeUtils.java

-2
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,10 @@ public static String processRemoteInferenceInputDataSetParametersValue(String in
104104

105105
parametersNode.fields().forEachRemaining(entry -> {
106106
String key = entry.getKey();
107-
System.out.println(key);
108107
JsonNode value = entry.getValue();
109108

110109
if (value.isTextual()) {
111110
String textValue = value.asText();
112-
System.out.println(textValue);
113111
try {
114112
// Try to parse the string as JSON
115113
JsonNode parsedValue = mapper.readTree(textValue);

0 commit comments

Comments
 (0)