mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
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:
@@ -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)
|
||||
);
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user