virtio-devices, vmm: Upgrade restore related messages to info!()

These happen only sporadically so can be included at the info!() level.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford
2021-09-03 10:30:06 +01:00
committed by Bo Chen
parent 64e217cf39
commit e475b12cf7
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -331,7 +331,7 @@ impl VirtioCommon {
impl Pausable for VirtioCommon {
fn pause(&mut self) -> std::result::Result<(), MigratableError> {
debug!(
info!(
"Pausing virtio-{}",
VirtioDeviceType::from(self.device_type)
);
@@ -353,7 +353,7 @@ impl Pausable for VirtioCommon {
}
fn resume(&mut self) -> std::result::Result<(), MigratableError> {
debug!(
info!(
"Resuming virtio-{}",
VirtioDeviceType::from(self.device_type)
);
+2 -2
View File
@@ -131,11 +131,11 @@ impl EpollHelper {
match ev_type {
EPOLL_HELPER_EVENT_KILL => {
debug!("KILL_EVENT received, stopping epoll loop");
info!("KILL_EVENT received, stopping epoll loop");
return Ok(());
}
EPOLL_HELPER_EVENT_PAUSE => {
debug!("PAUSE_EVENT received, pausing epoll loop");
info!("PAUSE_EVENT received, pausing epoll loop");
// Acknowledge the pause is effective by using the
// paused_sync barrier.