summaryrefslogtreecommitdiff
path: root/libvirtxml.go
diff options
context:
space:
mode:
Diffstat (limited to 'libvirtxml.go')
-rw-r--r--libvirtxml.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/libvirtxml.go b/libvirtxml.go
index 64b6814..f872c75 100644
--- a/libvirtxml.go
+++ b/libvirtxml.go
@@ -331,10 +331,9 @@ func dumpNonStandardXML(domcfg *libvirtxml.Domain) (string, error) {
domcfg.CPU = nil
case "custom":
updatedXML, _ := xml.MarshalIndent(domcfg.CPU, "", " ")
- log.Info("Ignore custom CPU Start")
+ log.Info("Ignoring custom CPU Start")
fmt.Println(string(updatedXML))
- log.Info("Ignore custom CPU End")
- log.Info("Add --xml-ignore-cpu to ignore this")
+ log.Info("Ignoring custom CPU End (--xml-ignore-cpu=true)")
if argv.IgnoreCpu {
domcfg.CPU = nil
}