From 8f01d1992edf292b893c7f8636a686d9669ef68d Mon Sep 17 00:00:00 2001 From: Felipe Date: Tue, 5 Dec 2023 10:14:17 -0300 Subject: [PATCH] Remove extraneous output (#343) --- client/client.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/client/client.go b/client/client.go index b57fc867..ccdf1491 100644 --- a/client/client.go +++ b/client/client.go @@ -18,7 +18,6 @@ package client import ( "context" - "log" "github.com/centrifuge/go-substrate-rpc-client/v4/config" gethrpc "github.com/centrifuge/go-substrate-rpc-client/v4/gethrpc" @@ -70,8 +69,6 @@ func (c client) Close() { // Connect connects to the provided url func Connect(url string) (Client, error) { - log.Printf("Connecting to %v...", url) - ctx, cancel := context.WithTimeout(context.Background(), config.Default().DialTimeout) defer cancel()