From 016e923138c3fc39aa7f670ef2c12d58552277fb Mon Sep 17 00:00:00 2001 From: asonix Date: Thu, 4 Sep 2025 17:51:09 -0500 Subject: [PATCH] Remove printlns from dispatcher --- actix-http/src/h1/dispatcher.rs | 6 ------ 1 file changed, 6 deletions(-) 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);