Skip to content

Commit c3b13da

Browse files
authored
fix level of no valid NC log in reconciler (#1567)
fix no valid NC log in reconciler Signed-off-by: Evan Baker <[email protected]> Signed-off-by: Evan Baker <[email protected]>
1 parent bd236e7 commit c3b13da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cns/kubecontroller/nodenetworkconfig/reconciler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func (r *Reconciler) Reconcile(ctx context.Context, req reconcile.Request) (reco
8080
if r.nodeIP != "" {
8181
if r.nodeIP != nnc.Status.NetworkContainers[i].NodeIP {
8282
// skip this NC since it was created for a different node
83-
logger.Debugf("[cns-rc] skipping network container %s found in NNC because node IP doesn't match, got %s, expected %s",
83+
logger.Printf("[cns-rc] skipping network container %s found in NNC because node IP doesn't match, got %s, expected %s",
8484
nnc.Status.NetworkContainers[i].ID, nnc.Status.NetworkContainers[i].NodeIP, r.nodeIP)
8585
continue
8686
}

0 commit comments

Comments
 (0)