From f84b6f9537af2035cb580ac6bd2ba70314c44ca2 Mon Sep 17 00:00:00 2001 From: RPRX <63339210+RPRX@users.noreply.github.com> Date: Fri, 6 Jun 2025 01:53:57 +0000 Subject: [PATCH] Update handler.go --- app/proxyman/outbound/handler.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/proxyman/outbound/handler.go b/app/proxyman/outbound/handler.go index 341d78a9..265263b8 100644 --- a/app/proxyman/outbound/handler.go +++ b/app/proxyman/outbound/handler.go @@ -289,7 +289,7 @@ func (h *Handler) Dial(ctx context.Context, dest net.Destination) (stat.Connecti origin, _, err := net.SplitHostPort(inbound.Conn.LocalAddr().String()) if err == nil { ob.Gateway = net.ParseAddress(origin) - errors.LogInfo(ctx, "use receive package ip as snedthrough: ", origin) + errors.LogDebug(ctx, "use receive package ip as snedthrough: ", origin) } } } @@ -299,7 +299,7 @@ func (h *Handler) Dial(ctx context.Context, dest net.Destination) (stat.Connecti clientaddr, _, err := net.SplitHostPort(inbound.Conn.RemoteAddr().String()) if err == nil { ob.Gateway = net.ParseAddress(clientaddr) - errors.LogInfo(ctx, "use client src ip as snedthrough: ", clientaddr) + errors.LogDebug(ctx, "use client src ip as snedthrough: ", clientaddr) } }