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:?}"); } }); }