diff --git a/internal/server/instance/drivers/driver_qemu.go b/internal/server/instance/drivers/driver_qemu.go index 42d5c1ec288..b225e03da00 100644 --- a/internal/server/instance/drivers/driver_qemu.go +++ b/internal/server/instance/drivers/driver_qemu.go @@ -4953,11 +4953,8 @@ func (d *qemu) Stop(stateful bool) error { } } - // Save the console log from ring buffer before the instance is stopped. Must be run prior to creating the operation lock. - _, err := d.ConsoleLog() - if err != nil { - return err - } + // Attempt to save the console log from ring buffer before the instance is stopped. Must be run prior to creating the operation lock. + _, _ = d.ConsoleLog() // Setup a new operation. // Allow inheriting of ongoing restart or restore operation (we are called from restartCommon and Restore).