From 5645033ce9882ec7d181f637ac7327117a5bb0a9 Mon Sep 17 00:00:00 2001 From: ArmandMeppa Date: Wed, 22 Jan 2025 13:18:58 +0100 Subject: [PATCH] chore: remove display of agent states from fetchstatus function --- wazuh-agent-status-client/main.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/wazuh-agent-status-client/main.go b/wazuh-agent-status-client/main.go index cc7fb7e..4e1d016 100644 --- a/wazuh-agent-status-client/main.go +++ b/wazuh-agent-status-client/main.go @@ -117,9 +117,6 @@ func fetchStatus() (string, string) { response = strings.TrimSuffix(response, "\n") - // Log the raw response for debugging - log.Printf("Raw response: %s", response) - // Split the string by comma parts := strings.Split(response, ", ")