From 6a438c25d0c743662030c0607de636ee10e8fc64 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 12 Jun 2018 18:06:54 +0200 Subject: [PATCH] agent/proxy: remove debug println --- agent/proxy/proxy_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/agent/proxy/proxy_test.go b/agent/proxy/proxy_test.go index bb40206305..0a92373192 100644 --- a/agent/proxy/proxy_test.go +++ b/agent/proxy/proxy_test.go @@ -48,7 +48,6 @@ func helperProcess(s ...string) *exec.Cmd { cmd := exec.Command(os.Args[0], cs...) cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr - println(fmt.Sprintf("YO WHAT %#v", cmd.Args)) return cmd }