more logs
All checks were successful
CI/CD Pipeline / test (push) Successful in 2m7s
CI/CD Pipeline / deploy (push) Successful in 4m6s

This commit is contained in:
2025-07-27 21:08:12 +02:00
parent 98b827400c
commit d1aec7a213

View File

@@ -8,7 +8,7 @@ pub async fn spawn_download_task(url: &str, state: Arc<AppState>) {
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:?}");
}
});
}