diff --git a/internal/pass/connection/proxy.go b/internal/pass/connection/proxy.go index 8267c10..2f1567a 100644 --- a/internal/pass/connection/proxy.go +++ b/internal/pass/connection/proxy.go @@ -2,7 +2,6 @@ package connection import ( "bytes" - "fmt" "sync" "time" @@ -59,17 +58,12 @@ func startProxy(wsConn *websocket.Conn, send *safeChannel, read chan []byte) { go recovery.DoNotPanic(func() { defer wg.Done() - fmt.Println("writePump start") proxy.writePump() - fmt.Println("writePump end") }) go recovery.DoNotPanic(func() { - fmt.Println("readPump start") - defer wg.Done() proxy.readPump() - fmt.Println("readPump end") }) go recovery.DoNotPanic(func() {