Skip to content

Commit

Permalink
removed ws<->srv debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
brobits committed Mar 27, 2018
1 parent 8b19f0d commit d9ee05b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions v2/websocket/transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ func (w *ws) Send(ctx context.Context, msg interface{}) error {
if err != nil {
return err
}
log.Printf("ws->srv: %s", string(bs))

select {
case <-ctx.Done():
Expand Down Expand Up @@ -128,7 +127,6 @@ func (w *ws) listenWs() {
w.cleanup(err)
return
}
log.Printf("srv->ws: %s", string(msg))
w.downstream <- msg
}
}
Expand Down

0 comments on commit d9ee05b

Please sign in to comment.