vmm: add directory path to error message

Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de>
On-behalf-of: SAP philipp.schuster@sap.com
This commit is contained in:
Philipp Schuster
2025-07-10 16:26:38 +02:00
committed by Bo Chen
parent f9c134471a
commit 9d4408ba76

View File

@@ -27,7 +27,7 @@ pub fn url_to_path(url: &str) -> std::result::Result<PathBuf, MigratableError> {
if !path.is_dir() {
return Err(MigratableError::MigrateSend(anyhow!(
"Destination is not a directory"
"Destination is not a directory: {path:?}"
)));
}