Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
xtaci committed Apr 7, 2019
1 parent 77b36b6 commit 427ad5f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions session.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package smux
import (
"encoding/binary"
"io"
"log"
"sync"
"sync/atomic"
"time"
Expand Down Expand Up @@ -327,7 +326,6 @@ func (s *Session) sendLoop() {
v[0] = buf[:headerSize]
v[1] = request.frame.data
n, err = bw.WriteBuffers(v)
log.Println("buffers")
} else {
copy(buf[headerSize:], request.frame.data)
n, err = s.conn.Write(buf[:headerSize+len(request.frame.data)])
Expand Down

0 comments on commit 427ad5f

Please sign in to comment.