Skip to content

Commit

Permalink
Remove extra logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Ogg committed Sep 9, 2022
1 parent 10cf666 commit 16102a7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pkg/new-ui/v1beta1/hp.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ func (k *KatibUIHandler) FetchHPJobInfo(w http.ResponseWriter, r *http.Request)

foundPipelineUID := false
for _, t := range trialList.Items {
log.Printf("Processing trial: %s", t.Name)
runUid, ok := t.GetAnnotations()[kfpRunIDAnnotation]
if !ok {
log.Printf("Trial %s has no pipeline run.", t.Name)
Expand All @@ -99,7 +98,6 @@ func (k *KatibUIHandler) FetchHPJobInfo(w http.ResponseWriter, r *http.Request)
trialResText := make([]string, len(metricsList)+len(paramList))

if t.IsSucceeded() || t.IsEarlyStopped() {
log.Printf("Trial: %s suceeded or stopped early", t.Name)
obsLogResp, err := c.GetObservationLog(
context.Background(),
&api_pb_v1beta1.GetObservationLogRequest{
Expand Down

0 comments on commit 16102a7

Please sign in to comment.