From 88031b7fdee56ed64a480edc33b1a0d01f8f1a17 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 3 Jan 2018 09:00:22 -0800 Subject: [PATCH] remove debug prints --- src/pipeline.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pipeline.rs b/src/pipeline.rs index 7e2681c57..ad26266fa 100644 --- a/src/pipeline.rs +++ b/src/pipeline.rs @@ -600,7 +600,6 @@ impl ProcessResponse { Ok(Async::Ready(Some(frame))) => { match frame { Frame::Payload(None) => { - println!("ACTOR PAYLOAD EOF"); info.context = Some(ctx); self.iostate = IOState::Done; if let Err(err) = io.write_eof() { @@ -611,7 +610,6 @@ impl ProcessResponse { break }, Frame::Payload(Some(chunk)) => { - println!("ACTOR PAYLOAD"); self.iostate = IOState::Actor(ctx); match io.write(chunk.as_ref()) { Err(err) => { @@ -623,7 +621,6 @@ impl ProcessResponse { } }, Frame::Drain(fut) => { - println!("ACTOR DRAIN"); self.drain = Some(fut); self.iostate = IOState::Actor(ctx); break