We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1122e08 commit fdf5858Copy full SHA for fdf5858
vmm/src/api/http/http_endpoint.rs
@@ -413,13 +413,13 @@ impl PutHandler for VmSendMigration {
413
)
414
.map_err(HttpError::ApiError)?;
415
416
- info!("live migration started");
+ debug!("live migration started");
417
418
let (_, receiver) = &*ONGOING_LIVEMIGRATION;
419
420
- info!("waiting for live migration result");
+ debug!("waiting for live migration result");
421
let mig_res = receiver.lock().unwrap().recv().unwrap();
422
- info!("received live migration result");
+ debug!("received live migration result");
423
424
// We forward the migration error here to the guest
425
mig_res
0 commit comments