From e3f0fce68f9686d1250c701fb1ecdeecd1ab8cae Mon Sep 17 00:00:00 2001 From: Almir Cunha <91955658+almirmcunhajr@users.noreply.github.com> Date: Tue, 2 Jul 2024 14:59:50 -0300 Subject: [PATCH] Revert "Add debug log" --- azuredevops/taskagent/client.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/azuredevops/taskagent/client.go b/azuredevops/taskagent/client.go index b8e5fde0..2ab86f6f 100644 --- a/azuredevops/taskagent/client.go +++ b/azuredevops/taskagent/client.go @@ -18,7 +18,6 @@ import ( "net/url" "strconv" "strings" - "log" ) var ResourceAreaId, _ = uuid.Parse("a85b8835-c1a1-4aac-ae97-1c3d0ba72dbd") @@ -1413,11 +1412,6 @@ func (client *ClientImpl) GetMessage(ctx context.Context, args GetMessageArgs) ( if args.LastMessageId != nil { queryParams.Add("lastMessageId", strconv.FormatUint(*args.LastMessageId, 10)) } - - runner := ctx.Value("runner").(string) - log.Printf("Getting message for runner %s with query params %s\n", runner, queryParams.Encode()) - log.Printf("Getting message for runner %s with route values %s\n", runner, routeValues) - locationId, _ := uuid.Parse("c3a054f6-7a8a-49c0-944e-3a8e5d7adfd7") resp, err := client.Client.Send(ctx, http.MethodGet, locationId, "5.1-preview.1", routeValues, queryParams, nil, "", "application/json", nil) if err != nil {