From d1aec7a213d2f2aa1206cfbd6c9c541dc2054426 Mon Sep 17 00:00:00 2001 From: Philipp Hofer Date: Sun, 27 Jul 2025 21:08:12 +0200 Subject: [PATCH] more logs --- src/downloader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/downloader.rs b/src/downloader.rs index d7827df..715e602 100644 --- a/src/downloader.rs +++ b/src/downloader.rs @@ -8,7 +8,7 @@ pub async fn spawn_download_task(url: &str, state: Arc) { let url = url.to_string(); tokio::spawn(async move { if let Err(e) = download_stream(&url, state).await { - eprintln!("Download failed: {e}"); + eprintln!("Download failed: {e:?}"); } }); }