]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Remove bogus log warning lines when launching QEMU
authorDaniel P. Berrange <berrange@redhat.com>
Thu, 27 Jan 2011 18:39:53 +0000 (18:39 +0000)
committerDaniel P. Berrange <berrange@redhat.com>
Fri, 28 Jan 2011 11:49:21 +0000 (11:49 +0000)
The refactoring of QEMU command startup was comitted with
a couple of VIR_WARN lines left in from debugging.

* src/qemu/qemu_driver.c: Remove log warning lines

src/qemu/qemu_driver.c

index 35e1cd77aa8a4872441ca18e03b2dcfcede273a0..84d339b86c5771e47f8c6be5e3c5d2fb9b808485 100644 (file)
@@ -2868,7 +2868,6 @@ static int qemudStartVMDaemon(virConnectPtr conn,
     if (driver->clearEmulatorCapabilities)
         virCommandClearCaps(cmd);
 
-    VIR_WARN("Executing %s", vm->def->emulator);
     virCommandSetPreExecHook(cmd, qemudSecurityHook, &hookData);
 
     virCommandSetOutputFD(cmd, &logfile);
@@ -2878,7 +2877,6 @@ static int qemudStartVMDaemon(virConnectPtr conn,
     virCommandDaemonize(cmd);
 
     ret = virCommandRun(cmd, NULL);
-    VIR_WARN("Executing done %s", vm->def->emulator);
     VIR_FREE(pidfile);
 
     /* wait for qemu process to to show up */