]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemu: Don't warn about missing device in DEVICE_DELETED event
authorJiri Denemark <jdenemar@redhat.com>
Fri, 2 Sep 2016 12:52:15 +0000 (14:52 +0200)
committerJiri Denemark <jdenemar@redhat.com>
Tue, 6 Sep 2016 12:30:40 +0000 (14:30 +0200)
Debug priority is good enough for this.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
src/qemu/qemu_monitor_json.c

index 3d0a1206e17af9dcb63a6e278ecaad635c4643d7..8384314771f86ac2096522d53d670e757db686fb 100644 (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;
     }