add more debugging

This commit is contained in:
Malte Meiboom
2026-05-20 15:07:41 +02:00
parent 85468e8d3b
commit 3b95409a40
+4 -1
View File
@@ -39,7 +39,10 @@ impl HuskConfig {
}
},
Err(e) => {
Err(HuskError::ConfigFileOpenError(e.to_string()).into())
Err(HuskError::ConfigFileOpenError(format!(
"{} - {}",
path,
e.to_string())).into())
}
}
}