qemu: Don't warn about missing device in DEVICE_DELETED event

Debug priority is good enough for this.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
Jiri Denemark 2016-09-02 14:52:15 +02:00
parent 90e178f8bf
commit 5ead7f939a

View File

@ -941,7 +941,7 @@ qemuMonitorJSONHandleDeviceDeleted(qemuMonitorPtr mon, virJSONValuePtr data)
const char *device;
if (!(device = virJSONValueObjectGetString(data, "device"))) {
VIR_WARN("missing device in device deleted event");
VIR_DEBUG("missing device in device deleted event");
return;
}