From 37f305a0eb543f2dc071aed57d62030c77235af8 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Thu, 4 May 2023 11:23:42 +0200 Subject: [PATCH] Improve error message when download process fails. --- launcher/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }