From d988fb404c0e7ed90d88a030fd4d8d5c5ed523a1 Mon Sep 17 00:00:00 2001 From: Valentine Briese Date: Fri, 20 Oct 2023 10:45:16 -0700 Subject: [PATCH] Don't debug every single chunk received --- src/installation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installation.rs b/src/installation.rs index 813feb0..1b33adf 100644 --- a/src/installation.rs +++ b/src/installation.rs @@ -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 {