From fe867db2ee9975c6058f7738c44aad870990654f Mon Sep 17 00:00:00 2001 From: Yo'av Moshe Date: Sun, 1 Sep 2024 22:56:17 +0200 Subject: [PATCH] remove print --- parsers/utils.go | 1 - 1 file changed, 1 deletion(-) diff --git a/parsers/utils.go b/parsers/utils.go index 1596538..1276949 100644 --- a/parsers/utils.go +++ b/parsers/utils.go @@ -26,7 +26,6 @@ func ExecuteCurlBlock(block common.Block) (interface{}, error) { return nil, fmt.Errorf("curl command failed: %w\nOutput: %s", err, string(output)) } - fmt.Println(string(output)) isJSON := json.Valid(bytes.TrimSpace(output)) log.Println(isJSON) if isJSON {