Patch of the web logger

This commit is contained in:
2025-10-20 16:23:50 +02:00
parent f5f6bcf3ab
commit f510e59b1a
12 changed files with 432 additions and 55 deletions

View File

@@ -346,7 +346,7 @@ async fn download_impl(
Ok(resp) => resp,
Err(e) => {
let mut s = state.write().await;
let error = format!("Failed to fetch URL: {}", e);
let error = format!("Failed to fetch URL '{}': {}", url, e);
s.error = Some(error.clone());
s.finished = true;
return Err(error);