remove more debug logging

This commit is contained in:
Lee Azzarello 2018-04-12 17:36:37 -07:00
parent 31a6be44db
commit b4a5f49cbc

View file

@ -168,7 +168,6 @@ func DialContext(ctx context.Context, rawurl string) (*Client, error) {
} }
switch u.Scheme { switch u.Scheme {
case "http", "https": case "http", "https":
log.Debug(fmt.Sprintf("connecting to rpc url %s", rawurl))
return DialHTTP(rawurl) return DialHTTP(rawurl)
case "ws", "wss": case "ws", "wss":
return DialWebsocket(ctx, rawurl, "") return DialWebsocket(ctx, rawurl, "")