qemu: monitor: Standardize log format in QEMU_CHECK_MONITOR_FULL macro

Use '=' to delimit identifier and value. Since we're logging VM object
log also the name of the VM.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
This commit is contained in:
Peter Krempa
2026-07-20 13:11:16 +02:00
parent 6c6716e0aa
commit 13dddb5346
+1 -1
View File
@@ -79,7 +79,7 @@ VIR_LOG_INIT("qemu.qemu_monitor");
_("monitor must not be NULL")); \
exit; \
} \
VIR_DEBUG("mon:%p vm:%p monfd:%d", mon, mon->vm, mon->fd); \
VIR_DEBUG("mon=%p vm=%p(%s) monfd=%d", mon, mon->vm, mon->vm->def->name, mon->fd); \
} while (0)
/* Check monitor and return NULL on error */