diff --git a/binaries/daemon/src/spawn.rs b/binaries/daemon/src/spawn.rs index 662c6bc5..e17deff5 100644 --- a/binaries/daemon/src/spawn.rs +++ b/binaries/daemon/src/spawn.rs @@ -133,9 +133,10 @@ pub async fn spawn_node( .spawn() .wrap_err_with(move || { format!( - "failed to run `{}` with args `{}`", + "failed to run `{}` with args `{}`. If this was run with python, the python used was: {:?}", n.source, - n.args.as_deref().unwrap_or_default() + n.args.as_deref().unwrap_or_default(), + get_python_path().unwrap_or_default() ) })? }