agent/proxy: remove debug println

This commit is contained in:
Mitchell Hashimoto 2018-06-12 18:06:54 +02:00 committed by Jack Pearkes
parent 4fa92e7d0c
commit 164da57afb
1 changed files with 0 additions and 1 deletions

View File

@ -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
}