From 79a40354df06b79df03352fb9724c9f934b12e06 Mon Sep 17 00:00:00 2001 From: iximeow Date: Thu, 29 Dec 2022 19:09:01 +0000 Subject: remove vestigial logging --- src/io.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/io.rs b/src/io.rs index 67e4d11..245c1ef 100644 --- a/src/io.rs +++ b/src/io.rs @@ -40,11 +40,8 @@ impl ArtifactDescriptor { } pub async fn store_all(&mut self, mut data: axum::extract::BodyStream) -> Result<(), String> { - eprintln!("new store..."); loop { - eprint!("read..."); let chunk = data.next().await; - eprintln!("!"); let chunk = match chunk { Some(Ok(chunk)) => chunk, -- cgit v1.1