diff options
-rw-r--r-- | migration/vmstate.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/migration/vmstate.c b/migration/vmstate.c index fc29acf74d..1d637b20da 100644 --- a/migration/vmstate.c +++ b/migration/vmstate.c @@ -130,6 +130,8 @@ int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd, } if (ret < 0) { qemu_file_set_error(f, ret); + error_report("Failed to load %s:%s", vmsd->name, + field->name); trace_vmstate_load_field_error(field->name, ret); return ret; } |