Skip to content

Commit 1ef3b4c

Browse files
committed
fix log line
1 parent 53cb18f commit 1ef3b4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pkg/epp/scheduling/scheduler.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ func (s *Scheduler) Schedule(ctx context.Context, req *LLMRequest) (targetPod ba
130130
return nil, fmt.Errorf(
131131
"failed to apply filter, resulted %v pods, this should never happen: %w", len(pods), err)
132132
}
133-
logger.V(logutil.VERBOSE).Info("Selecting a random pod from the candidates", "candidatePods", pods)
133+
logger.V(logutil.VERBOSE).Info(fmt.Sprintf("Selecting a random pod from %d candidates: %+v", len(pods), pods))
134134
i := rand.Intn(len(pods))
135135
return pods[i], nil
136136
}

0 commit comments

Comments
 (0)