Skip to content

Commit a57543b

Browse files
fix(log): update failure domain config not found log
this isn't an error e.g. clusters that don't have failure domain. remove the "error" wording from log as it's confusing when debugging.
1 parent 71199fc commit a57543b

File tree

1 file changed

+1
-1
lines changed
  • pkg/handlers/nutanix/mutation/controlplanefailuredomains

1 file changed

+1
-1
lines changed

pkg/handlers/nutanix/mutation/controlplanefailuredomains/inject.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func (h *nutanixControlPlaneFailureDomains) Mutate(
7171
)
7272
if err != nil {
7373
if variables.IsNotFoundError(err) {
74-
log.V(5).Info("ControlPlane nutanix failureDomains variable not defined", "error", err.Error())
74+
log.V(5).Info("ControlPlane nutanix failureDomains variable not defined in cluster config")
7575
return nil
7676
}
7777
log.V(5).Error(err, "failed to get controlPlane nutanix failureDomains variable")

0 commit comments

Comments
 (0)