From 782c97a77e2bce178b7c082b3eb24bc723c10860 Mon Sep 17 00:00:00 2001 From: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> Date: Thu, 22 Aug 2024 12:52:57 +0100 Subject: [PATCH] Remove log statement Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> --- pkg/runs/runsGet.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/runs/runsGet.go b/pkg/runs/runsGet.go index ba8078ca..ca2b1f7c 100644 --- a/pkg/runs/runsGet.go +++ b/pkg/runs/runsGet.go @@ -272,7 +272,6 @@ func GetRunsFromRestApi( // Add all the runs into our set of results. // Note: The ... syntax means 'all of the array', so they all get appended at once. results = append(results, runsOnThisPage...) - log.Print("APPENDING ") // Have we processed the last page ? if !runData.HasNextCursor() || pageCursor == runData.GetNextCursor() {