tun2: remove debugging log lines

This commit is contained in:
Cadey Ratio 2017-04-05 15:24:25 -07:00
parent 581420b768
commit bb255b81f1
1 changed files with 0 additions and 13 deletions

View File

@ -195,11 +195,6 @@ func (c *Connection) Ping() error {
}
defer stream.Close()
ln.Log(c.F(), ln.F{
"action": "stream_opened",
"stream_id": stream.(*smux.Stream).ID(),
})
stream.SetWriteDeadline(time.Now().Add(time.Second))
err = req.Write(stream)
if err != nil {
@ -208,10 +203,6 @@ func (c *Connection) Ping() error {
return err
}
ln.Log(c.F(), ln.F{
"action": "wrote_request",
})
stream.SetReadDeadline(time.Now().Add(5 * time.Second))
_, err = stream.Read(make([]byte, 30))
if err != nil {
@ -222,10 +213,6 @@ func (c *Connection) Ping() error {
c.detector.Ping(time.Now())
ln.Log(c.F(), ln.F{
"action": "ping_is_ok",
})
return nil
}