From: Daniel P. Berrange Date: Thu, 27 Jan 2011 18:39:53 +0000 (+0000) Subject: Remove bogus log warning lines when launching QEMU X-Git-Tag: v0.8.8~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0095edaa062d5ac95c3162566a815af36461f69a;p=thirdparty%2Flibvirt.git Remove bogus log warning lines when launching QEMU 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 --- diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c index 35e1cd77aa..84d339b86c 100644 --- a/src/qemu/qemu_driver.c +++ b/src/qemu/qemu_driver.c @@ -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 */