diff --git a/azuredevops/client.go b/azuredevops/client.go index 76e066c1..921af58c 100644 --- a/azuredevops/client.go +++ b/azuredevops/client.go @@ -10,7 +10,6 @@ import ( "errors" "io" "io/ioutil" - "log" "net/http" "net/url" "reflect" @@ -79,9 +78,6 @@ func NewClientWithOptions(connection *Connection, baseUrl string, options ...Cli for _, fn := range options { fn(client) } - - log.Println("Created client with baseURL", client.baseUrl) - return client } diff --git a/azuredevops/connection.go b/azuredevops/connection.go index 6381be39..eb76f53c 100644 --- a/azuredevops/connection.go +++ b/azuredevops/connection.go @@ -7,7 +7,6 @@ import ( "context" "crypto/tls" "encoding/base64" - "log" "strings" "sync" "time" @@ -64,10 +63,8 @@ func (connection *Connection) GetClientByResourceAreaId(ctx context.Context, res } var client *Client if resourceAreaInfo != nil { - log.Println("resourceAreaInfo is not nil") client = connection.GetClientByUrl(*resourceAreaInfo.LocationUrl) } else { - log.Println("resourceAreaInfo is nil") // resourceAreaInfo will be nil for on prem servers client = connection.GetClientByUrl(connection.BaseUrl) }