Improve error message when download process fails.

This commit is contained in:
Nicolas Patry 2023-05-04 11:23:42 +02:00
parent b67908e0cf
commit 37f305a0eb

View File

@ -627,8 +627,8 @@ fn download_convert_model(
return Err(LauncherError::DownloadError);
}
}
_ => {
tracing::error!("Download process exited with an unknown status.");
e => {
tracing::error!("Download process exited with an unknown status.: {e:?}");
return Err(LauncherError::DownloadError);
}
}