Skip to content

Commit 4fc2c2c

Browse files
committed
Update log levels
1 parent 33f8623 commit 4fc2c2c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

slice/internal/controller/workload_controller.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ func (r *WorkloadReconciler) Reconcile(ctx context.Context, req ctrl.Request) (c
218218

219219
// Delete any Slices that are in a failed or stale state.
220220
if len(grouped.toDelete) > 0 {
221-
log.V(3).Info(
221+
log.V(2).Info(
222222
"Deleting Slices",
223223
"slices", klog.KObjSlice(grouped.toDelete),
224224
)
@@ -620,7 +620,7 @@ func (r *WorkloadReconciler) createSlices(ctx context.Context, wl *kueue.Workloa
620620
r.record.Event(wl, corev1.EventTypeWarning, FailedCreateSliceEventType, api.TruncateEventMessage(msg))
621621
ac.State = kueue.CheckStatePending
622622
ac.Message = api.TruncateConditionMessage(msg)
623-
log.V(3).Info("Updating AdmissionCheck state", "state", ac.State, "reason", msg)
623+
log.V(2).Info("Updating AdmissionCheck state", "state", ac.State, "reason", msg)
624624
patchErr := r.updateWorkloadAdmissionCheckStatus(ctx, wl, ac)
625625
if patchErr != nil {
626626
return nil, errors.Join(err, patchErr)
@@ -696,7 +696,7 @@ func (r *WorkloadReconciler) syncAdmissionCheckStatus(ctx context.Context, wl *k
696696

697697
if originalState != ac.State {
698698
message := fmt.Sprintf("Admission check %q updated state from %q to %q", ac.Name, originalState, ac.State)
699-
log.V(3).Info(message)
699+
log.V(2).Info(message)
700700
r.record.Event(wl, corev1.EventTypeNormal, AdmissionCheckUpdatedEventType, message)
701701
}
702702

0 commit comments

Comments
 (0)