From 3b4c0f49d4a7229209c6f33a2c0188f652a8e846 Mon Sep 17 00:00:00 2001 From: schulze Date: Wed, 3 May 2023 14:00:52 +0200 Subject: [PATCH] delete debug print --- pcsdk/commands.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pcsdk/commands.go b/pcsdk/commands.go index fdf4a4f..34e5edb 100644 --- a/pcsdk/commands.go +++ b/pcsdk/commands.go @@ -50,7 +50,6 @@ func (p Proxy) execute(c command) (string, error) { } requestURL := fmt.Sprintf("http://%s:%d/command", p.url.Addr().String(), p.url.Port()) - fmt.Println(requestURL) bodyReader := bytes.NewReader(data) res, err := http.DefaultClient.Post(requestURL, "application/json", bodyReader)