krata: log when a guest start failures occurs

This commit is contained in:
Alex Zenla
2024-03-31 01:44:28 +00:00
parent 15d5ed5a45
commit c68f367e4a
2 changed files with 8 additions and 0 deletions

View File

@ -134,6 +134,7 @@ impl GuestReconciler {
guest.state.as_mut().unwrap().error_info = Some(GuestErrorInfo {
message: error.to_string(),
});
warn!("failed to start guest {}: {}", guest.id, error);
true
}
};