Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

Commit

Permalink
Don't debug every single chunk received
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinegb committed Oct 20, 2023
1 parent c143db7 commit d988fb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/installation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,9 @@ async fn _install_mod(
while let Some(chunk) = stream.try_next().await? {
bytes.append(&mut chunk.to_vec());
mod_installation.increment_bytes(chunk.len() as u64);
debug!("received chunk");
}

debug!("received all chunks");
mod_installation.update_state(if updating {
ModInstallationState::Updating
} else {
Expand Down

0 comments on commit d988fb4

Please sign in to comment.