From 9d4408ba7613d5c8da4e2a4db3bf0a794ed42d17 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Thu, 10 Jul 2025 16:26:38 +0200 Subject: [PATCH] vmm: add directory path to error message Signed-off-by: Philipp Schuster On-behalf-of: SAP philipp.schuster@sap.com --- vmm/src/migration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmm/src/migration.rs b/vmm/src/migration.rs index 2752e82e5..d93b02805 100644 --- a/vmm/src/migration.rs +++ b/vmm/src/migration.rs @@ -27,7 +27,7 @@ pub fn url_to_path(url: &str) -> std::result::Result { if !path.is_dir() { return Err(MigratableError::MigrateSend(anyhow!( - "Destination is not a directory" + "Destination is not a directory: {path:?}" ))); }