From fad7acfffde599f84bc40ffd5f8037c6a306abdd Mon Sep 17 00:00:00 2001 From: Alex Ruiz Date: Mon, 3 Feb 2025 13:52:17 +0100 Subject: [PATCH] Remove log.warn added for testing --- .../com/wazuh/commandmanager/rest/RestPostCommandAction.java | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/command-manager/src/main/java/com/wazuh/commandmanager/rest/RestPostCommandAction.java b/plugins/command-manager/src/main/java/com/wazuh/commandmanager/rest/RestPostCommandAction.java index deaa7a8..14764ee 100644 --- a/plugins/command-manager/src/main/java/com/wazuh/commandmanager/rest/RestPostCommandAction.java +++ b/plugins/command-manager/src/main/java/com/wazuh/commandmanager/rest/RestPostCommandAction.java @@ -121,7 +121,6 @@ private RestChannelConsumer handlePost(RestRequest request) throws IOException { parser.nextToken(); if (parser.nextToken() == XContentParser.Token.START_ARRAY) { commands = Command.parseToArray(parser); - log.warn(request.content().utf8ToString()); } else { log.error("Token does not match {}", parser.currentToken()); }