From 33f7c5ad2ce7a37745eb6bb4ef24edb096a9a995 Mon Sep 17 00:00:00 2001 From: Bracken Dawson Date: Sat, 7 Jan 2023 20:45:32 +0000 Subject: [PATCH] Log the port we tried to dial --- http_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_client.go b/http_client.go index 301be74..4e4e008 100644 --- a/http_client.go +++ b/http_client.go @@ -65,5 +65,5 @@ func publicUnicastOnlyDialContext(ctx context.Context, network, addr string) (ne } } - return nil, fmt.Errorf("failed to dial any address in %q", ipAddrs) + return nil, fmt.Errorf("failed to dial port %q on any address in %q", port, ipAddrs) }