From 8334d5177e260e93fa3e3a0c4dba24377355835f Mon Sep 17 00:00:00 2001 From: V2Ray Date: Tue, 6 Oct 2015 16:44:19 +0200 Subject: [PATCH] Debug info --- proxy/vmess/vmessin_udp.go | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy/vmess/vmessin_udp.go b/proxy/vmess/vmessin_udp.go index 82322a963..fc14db5ec 100644 --- a/proxy/vmess/vmessin_udp.go +++ b/proxy/vmess/vmessin_udp.go @@ -93,5 +93,6 @@ func (handler *VMessInboundHandler) handlePacket(conn *net.UDPConn, request *pro if hasData { conn.WriteToUDP(buffer.Bytes(), clientAddr) + log.Info("VMessIn sending %d bytes to %s", len(buffer.Bytes()), clientAddr.String()) } }