diff --git a/launcher/src/main.rs b/launcher/src/main.rs index 9f8d215b..81de7a61 100644 --- a/launcher/src/main.rs +++ b/launcher/src/main.rs @@ -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); } }