From b95f15c09d30c41bb6c2336e59ba1f6f436724cb Mon Sep 17 00:00:00 2001 From: patterniha <71074308+patterniha@users.noreply.github.com> Date: Mon, 18 Aug 2025 08:15:42 +0330 Subject: [PATCH] fix no handler found --- app/proxyman/outbound/handler.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/proxyman/outbound/handler.go b/app/proxyman/outbound/handler.go index 0a65ecc2..69318de8 100644 --- a/app/proxyman/outbound/handler.go +++ b/app/proxyman/outbound/handler.go @@ -290,7 +290,8 @@ func (h *Handler) Dial(ctx context.Context, dest net.Destination) (stat.Connecti return h.getStatCouterConnection(conn), nil } - errors.LogWarning(ctx, "failed to get outbound handler with tag: ", tag) + errors.LogError(ctx, "failed to get outbound handler with tag: ", tag) + return nil, errors.New("failed to get outbound handler with tag: " + tag) } if h.senderSettings.Via != nil {