Skip to content

Commit eb249b0

Browse files
committed
Lower logging level
No need for this to be a warning as we've already determined it's okay to ignore. Signed-off-by: Stephen Finucane <[email protected]>
1 parent 652b30b commit eb249b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cloud/openstack/clients/machineservice.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1071,7 +1071,7 @@ func (is *InstanceService) InstanceDelete(id string) error {
10711071
if err != nil {
10721072
if httpStatus, ok := err.(gophercloud.ErrDefault404); ok {
10731073
if httpStatus.Actual == 404 {
1074-
klog.Warningf("Couldn't find instance %v to delete: %v", id, err)
1074+
klog.Infof("Couldn't find instance %v to delete: %v", id, err)
10751075
return nil
10761076
}
10771077
}

0 commit comments

Comments
 (0)