From b4a5f49cbcd92a9c045ecac60a6f7bc5ebff04be Mon Sep 17 00:00:00 2001 From: Lee Azzarello Date: Thu, 12 Apr 2018 17:36:37 -0700 Subject: [PATCH] remove more debug logging --- rpc/client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/rpc/client.go b/rpc/client.go index da2fe83c36..8aa84ec982 100644 --- a/rpc/client.go +++ b/rpc/client.go @@ -168,7 +168,6 @@ func DialContext(ctx context.Context, rawurl string) (*Client, error) { } switch u.Scheme { case "http", "https": - log.Debug(fmt.Sprintf("connecting to rpc url %s", rawurl)) return DialHTTP(rawurl) case "ws", "wss": return DialWebsocket(ctx, rawurl, "")