diff --git a/actix-http/src/h1/dispatcher.rs b/actix-http/src/h1/dispatcher.rs index b3f8762c6..0abd6226a 100644 --- a/actix-http/src/h1/dispatcher.rs +++ b/actix-http/src/h1/dispatcher.rs @@ -524,9 +524,6 @@ where let payload_unfinished = this.payload.is_some(); let not_pipelined = this.messages.is_empty(); - println!("not pipelined: {not_pipelined}"); - println!("payload unfinished: {payload_unfinished}"); - // payload stream finished. // set state to None and handle next message this.state.set(State::None); @@ -578,9 +575,6 @@ where let payload_unfinished = this.payload.is_some(); let not_pipelined = this.messages.is_empty(); - println!("not pipelined: {not_pipelined}"); - println!("payload unfinished: {payload_unfinished}"); - // payload stream finished. // set state to None and handle next message this.state.set(State::None);