From d1953f56cb923bfe4736a5d231f1a70add3dbb9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Dry=C5=9B?= Date: Wed, 17 Apr 2024 16:23:11 +0200 Subject: [PATCH] remove debug statements --- internal/pass/connection/proxy.go | 6 ------ 1 file changed, 6 deletions(-) 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() {