Skip to content

Commit 016e923

Browse files
committed
Remove printlns from dispatcher
1 parent b1ea42c commit 016e923

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

actix-http/src/h1/dispatcher.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -524,9 +524,6 @@ where
524524
let payload_unfinished = this.payload.is_some();
525525
let not_pipelined = this.messages.is_empty();
526526

527-
println!("not pipelined: {not_pipelined}");
528-
println!("payload unfinished: {payload_unfinished}");
529-
530527
// payload stream finished.
531528
// set state to None and handle next message
532529
this.state.set(State::None);
@@ -578,9 +575,6 @@ where
578575
let payload_unfinished = this.payload.is_some();
579576
let not_pipelined = this.messages.is_empty();
580577

581-
println!("not pipelined: {not_pipelined}");
582-
println!("payload unfinished: {payload_unfinished}");
583-
584578
// payload stream finished.
585579
// set state to None and handle next message
586580
this.state.set(State::None);

0 commit comments

Comments
 (0)