From c0ea29a2eddf029b76b9ace6f1ba7dd6dc8dcf6d Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Sat, 11 Feb 2017 07:39:06 +0100 Subject: [PATCH] switch to info --- app/proxyman/outbound/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/proxyman/outbound/handler.go b/app/proxyman/outbound/handler.go index 6574ea04..9f70578a 100644 --- a/app/proxyman/outbound/handler.go +++ b/app/proxyman/outbound/handler.go @@ -67,7 +67,7 @@ func (h *Handler) Dispatch(ctx context.Context, outboundRay ray.OutboundRay) { err := h.proxy.Process(ctx, outboundRay, h) // Ensure outbound ray is properly closed. if err != nil && errors.Cause(err) != io.EOF { - log.Warning("Proxyman|OutboundHandler: Failed to process outbound traffic: ", err) + log.Info("Proxyman|OutboundHandler: Failed to process outbound traffic: ", err) outboundRay.OutboundOutput().CloseError() } else { outboundRay.OutboundOutput().Close()