diff --git a/crates/lanspread-peer/src/lib.rs b/crates/lanspread-peer/src/lib.rs index 86adebc..8c22097 100644 --- a/crates/lanspread-peer/src/lib.rs +++ b/crates/lanspread-peer/src/lib.rs @@ -906,6 +906,13 @@ async fn download_from_peer( // Download chunks with error handling for chunk in &plan.chunks { + log::info!( + "Downloading chunk {} (offset {}, length {}) from {}", + chunk.relative_path, + chunk.offset, + chunk.length, + peer_addr + ); let result = download_chunk(&mut conn, &base_dir, game_id, chunk).await; results.push(ChunkDownloadResult { chunk: chunk.clone(), @@ -1809,7 +1816,7 @@ async fn handle_peer_stream( offset, length, } => { - log::trace!( + log::info!( "{remote_addr:?} received GetGameFileChunk request for {relative_path} (offset {offset}, length {length})" );