diff --git a/websocket.go b/websocket.go index 82d11d5..fa2bffa 100644 --- a/websocket.go +++ b/websocket.go @@ -3,7 +3,6 @@ package lemmy import ( "context" "encoding/json" - "fmt" "net/http" "net/url" "reflect" @@ -99,8 +98,6 @@ func (c *WSClient) Request(op types.Operation, data any) error { return err } - fmt.Println(data, string(d)) - return c.conn.WriteJSON(types.LemmyWebSocketMsg{ Op: op.Operation(), Data: d,