From aa97fc4c85453c5fc7a4db46dff60408d0a31a95 Mon Sep 17 00:00:00 2001 From: tyiuhc Date: Tue, 30 Jul 2024 17:04:48 -0700 Subject: [PATCH] debug message for cohort not modified --- pkg/experiment/local/cohort_download_api.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/experiment/local/cohort_download_api.go b/pkg/experiment/local/cohort_download_api.go index 6d09fcd..2b022ed 100644 --- a/pkg/experiment/local/cohort_download_api.go +++ b/pkg/experiment/local/cohort_download_api.go @@ -85,6 +85,7 @@ func (api *directCohortDownloadApi) getCohort(cohortID string, cohort *Cohort) ( }(), }, nil } else if response.StatusCode == http.StatusNoContent { + api.log.Debug("getCohortMembers(%s): Cohort not modified", cohortID) return nil, nil } else if response.StatusCode == http.StatusRequestEntityTooLarge { return nil, &CohortTooLargeException{Message: "Cohort exceeds max cohort size"}