Darien Raymond 9 yıl önce
ebeveyn
işleme
f64c79e239
1 değiştirilmiş dosya ile 2 ekleme ve 0 silme
  1. 2 0
      transport/internet/dialer.go

+ 2 - 0
transport/internet/dialer.go

@@ -4,6 +4,7 @@ import (
 	"errors"
 	"net"
 
+	"v2ray.com/core/common/log"
 	v2net "v2ray.com/core/common/net"
 )
 
@@ -29,6 +30,7 @@ var (
 
 func Dial(src v2net.Address, dest v2net.Destination, options DialerOptions) (Connection, error) {
 	if options.Proxy.HasTag() && ProxyDialer != nil {
+		log.Info("Internet: Proxying outbound connection through: ", options.Proxy.Tag)
 		return ProxyDialer(src, dest, options)
 	}