From: Michal Privoznik Date: Wed, 7 Dec 2022 09:47:20 +0000 (+0100) Subject: qemu_monitor: Debug print all arguments in qemuMonitorScreendump() X-Git-Tag: v9.0.0-rc1~203 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=705ab146fcbfad1644e9b6b5a8e211edbb29dfcd;p=thirdparty%2Flibvirt.git qemu_monitor: Debug print all arguments in qemuMonitorScreendump() For some reason, only @file argument is printed into debug logs. The rest of arguments was left out. Include all arguments. Signed-off-by: Michal Privoznik Reviewed-by: Martin Kletzander Reviewed-by: Ján Tomko --- diff --git a/src/qemu/qemu_monitor.c b/src/qemu/qemu_monitor.c index 80f262cec7..d10448ec7c 100644 --- a/src/qemu/qemu_monitor.c +++ b/src/qemu/qemu_monitor.c @@ -2855,7 +2855,7 @@ qemuMonitorScreendump(qemuMonitor *mon, unsigned int head, const char *file) { - VIR_DEBUG("file=%s", file); + VIR_DEBUG("device=%s head=%u file=%s", device, head, file); QEMU_CHECK_MONITOR(mon);