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 <mprivozn@redhat.com>
Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Michal Privoznik 2022-12-07 10:47:20 +01:00
parent 7d778701e2
commit 705ab146fc

View File

@ -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);