We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68354f0 commit 7639e6fCopy full SHA for 7639e6f
pkg/ext-proc/backend/inferencemodel_reconciler.go
@@ -25,7 +25,7 @@ func (c *InferenceModelReconciler) Reconcile(ctx context.Context, req ctrl.Reque
25
if req.Namespace != c.PoolNamespacedName.Namespace {
26
return ctrl.Result{}, nil
27
}
28
- klog.V(1).Info("reconciling InferenceModel", req.NamespacedName)
+ klog.V(1).Infof("reconciling InferenceModel %v", req.NamespacedName)
29
30
service := &v1alpha1.InferenceModel{}
31
if err := c.Get(ctx, req.NamespacedName, service); err != nil {
0 commit comments