vmm: silence some info!() messages with little value-add

On-behalf-of: SAP philipp.schuster@sap.com
Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de>
This commit is contained in:
Philipp Schuster
2026-06-25 09:57:58 +02:00
committed by Bo Chen
parent 48c9e9d86b
commit ebc653d0c8
+2 -2
View File
@@ -363,7 +363,7 @@ impl ReceiveAdditionalConnections {
let _ = terminate_fd.write(1); let _ = terminate_fd.write(1);
} }
info!("Stopped accepting additional connections. Cleaning up threads."); debug!("Stopped accepting additional connections. Cleaning up threads.");
Self::join_memory_threads(threads, first_err) Self::join_memory_threads(threads, first_err)
} }
@@ -512,7 +512,7 @@ impl ReceiveAdditionalConnections {
.context("Failed to poll fds") .context("Failed to poll fds")
.map_err(MigratableError::MigrateReceive)? .map_err(MigratableError::MigrateReceive)?
{ {
info!("Got signal to tear down connection."); debug!("Got signal to tear down connection.");
return Ok(()); return Ok(());
} }