remove unnecessary log

pull/299/head^2
v2ray 2016-06-02 21:49:57 +02:00
parent 7a082ce63a
commit f3975aafbf
1 changed files with 0 additions and 4 deletions

View File

@ -5,7 +5,6 @@ import (
"net" "net"
"time" "time"
"github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net" v2net "github.com/v2ray/v2ray-core/common/net"
"github.com/v2ray/v2ray-core/transport" "github.com/v2ray/v2ray-core/transport"
) )
@ -24,13 +23,10 @@ func Dial(dest v2net.Destination) (*Connection, error) {
} }
if conn == nil { if conn == nil {
var err error var err error
log.Debug("Hub: Dialling new connection to ", dest)
conn, err = DialWithoutCache(dest) conn, err = DialWithoutCache(dest)
if err != nil { if err != nil {
return nil, err return nil, err
} }
} else {
log.Debug("Hub: Reusing connection to ", dest)
} }
return &Connection{ return &Connection{
dest: destStr, dest: destStr,