summaryrefslogtreecommitdiff
path: root/src/io.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/io.rs')
-rw-r--r--src/io.rs3
1 files changed, 0 insertions, 3 deletions
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,