Skip to content

Commit

Permalink
Changing how the warning is logged
Browse files Browse the repository at this point in the history
  • Loading branch information
eoghan.russell@intel.com committed Oct 26, 2021
1 parent 7490364 commit 8bd470f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/sriovdp/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func (rm *resourceManager) excludeAllocatedDevices(filteredDevices []types.PciDe
deviceAllocated[dev.GetPciAddr()] = true
filteredDevicesTemp = append(filteredDevicesTemp, dev)
} else {
glog.Infof("Warning: Cannot add PCI Address [%s]. Already allocated.", dev.GetPciAddr())
glog.Warningf("Cannot add PCI Address [%s]. Already allocated.", dev.GetPciAddr())
}
}
return filteredDevicesTemp
Expand Down

0 comments on commit 8bd470f

Please sign in to comment.